-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.88 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "arascan",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf ./packages/*/dist",
"build": "tsc --build",
"lint": "eslint . -f codeframe",
"pretest": "yarn build && yarn lint",
"test": "yarn test:only",
"test:only": "mocha \"packages/*/dist/test/**/*.spec.js\"",
"start": "yarn start:client",
"start:client": "yarn workspace @arascan/app start",
"start:api-server": "yarn workspace @arascan/api start",
"start:headwatcher": "yarn workspace @arascan/headwatcher start",
"start:sequencer": "yarn workspace @arascan/sequencer start",
"start:account-updater": "yarn workspace @arascan/sequencer start-account-updater",
"start:web-ui": "yarn workspace @arascan/ui start",
"dev:web-ui": "yarn workspace @arascan/ui dev",
"prettify": "npx prettier . --write"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/chai": "^4.2.15",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.1",
"@types/node": "12",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"css-loader": "^5.2.4",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"lerna": "^4.0.0",
"mini-css-extract-plugin": "^1.3.9",
"mocha": "^8.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.0.18",
"typescript": "~4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"license": "Apache-2.0",
"private": true
}