forked from purefinance/pure.finance
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 982 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "pure-finance",
"version": "1.0.0",
"license": "MIT",
"author": "Gabriel Montes",
"scripts": {
"build": "npm run lerna:run build",
"deps:check": "npm run lerna:run deps:check",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"postinstall": "lerna bootstrap",
"lerna:run": "lerna run --stream --concurrency 1",
"lint": "eslint --cache --quiet .",
"test": "npm run lerna:run test",
"test:e2e": "npm run lerna:run test:e2e"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"dependency-check": "^4.1.0",
"eslint": "^7.29.0",
"eslint-config-bloq": "^4.0.2",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"mocha": "^9.0.3",
"next": "^14.0.0",
"node-gyp": "^10.0.0",
"nyc": "^15.1.0",
"precinct": "^8.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^2.2.7"
}
}