This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
67 lines (67 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
{
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=12.16.3"
},
"scripts": {
"build": "npm run setup && npm run app:build",
"setup": "npx lerna bootstrap && npm run core:build && npm run cli:build",
"core:dev": "lerna run dev --scope aragorn-core",
"core:build": "lerna run build --scope aragorn-core",
"core:clean": "lerna run clean --scope aragorn-core",
"cli:dev": "lerna run dev --scope aragorn-cli",
"cli:build": "lerna run build --scope aragorn-cli",
"app:dev": "lerna run dev --parallel --scope aragorn-app-*",
"app:build": "lerna run build --parallel --scope aragorn-app-*",
"app:start": "lerna run start --scope aragorn-app-main",
"app:pack": "lerna run pack --scope aragorn-app-main",
"app:dist": "lerna run dist --scope aragorn-app-main",
"tsc": "tsc --noEmit",
"lint": "eslint packages --ext .ts,.tsx",
"lint:fix": "eslint packages --fix --ext .ts,.tsx",
"prettier": "prettier --write packages"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.16.0",
"eslint-config-alloy": "^3.10.0",
"eslint-plugin-react": "^7.21.5",
"fork-ts-checker-webpack-plugin": "^6.0.8",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"update-versions": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,html,css,less,md}": "prettier --write"
}
}