-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
67 lines (67 loc) · 2.17 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
{
"name": "wq.app",
"type": "module",
"scripts": {
"test": "npm test --workspaces",
"build": "npm run build --workspaces --if-present",
"jest": "jest --verbose",
"rollup": "rollup",
"rollup-all": "npm run rollup --workspaces --if-present",
"babel": "babel --ignore **/__tests__/**",
"precise-commits": "precise-commits",
"prettier": "prettier",
"prettier-all": "prettier --write .",
"eslint": "eslint",
"lint": "eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"babel-plugin-direct-import": "^1.0.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-react": "^7.32.2",
"fake-indexeddb": "^4.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"maplibre-gl": "^3.1.0",
"metro-react-native-babel-preset": "^0.76.6",
"precise-commits": "^1.0.2",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-license": "^3.0.1",
"whatwg-fetch": "^3.6.2"
},
"prettier": {
"tabWidth": 4
},
"workspaces": [
"packages/store",
"packages/router",
"packages/model",
"packages/outbox",
"packages/app",
"packages/react",
"packages/material-web",
"packages/material",
"packages/map",
"packages/map-gl-web",
"packages/map-gl"
]
}