-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"repository": {
"type": "git",
"url": "https://github.com/overture-stack/arranger.git"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"admin": "cd modules/admin-ui && npm run start",
"all": "npm run lerna -- run --parallel start",
"components:watch": "cd modules/components && npm run watch",
"watch": "npm run bootstrap && npm run lerna -- run --parallel watch",
"bootstrap": "lerna bootstrap --hoist",
"lerna": "lerna",
"link": "npm-link-shared modules",
"publish::ci": "lerna publish from-package --yes --no-verify-access --force-publish=*",
"prepare": "ts-patch install -s",
"reset": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"test": "lerna run test --stream",
"server": "cd modules/server && npm run start",
"server:prod": "cd modules/server && npm run start:prod",
"server:watch": "cd modules/server && npm run watch",
"storybook": "cd modules/components && npm run storybook",
"dashboard": "cd modules/components && npm run dashboard",
"portal": "cd modules/components && npm run portal",
"netlify-build": "npm i && npm run bootstrap -- --scope=@overture-stack/arranger-components --include-filtered-dependencies && cd modules/components && npm run build-storybook",
"tag": "lerna version --force-publish --yes"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@emotion/eslint-plugin": "^11.10.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^18.15.3",
"@types/ramda": "^0.28.23",
"@types/react-dom": "^18.0.11",
"@types/recompose": "^0.30.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-core": "^7.0.0-bridge.0",
"date-fns": "^2.29.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql-fields": "^2.0.3",
"jest": "^29.5.0",
"jest-localstorage-mock": "^2.4.26",
"jsonpath": "^1.1.1",
"lerna": "^6.5.1",
"node-sass": "^8.0.0",
"npm-link-shared": "^0.5.6",
"paralleljs": "^1.1.0",
"prettier": "^2.8.5",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"ts-patch": "^2.1.0",
"typescript": "^4.9.5"
},
"overrides": {
"minimist": "^1.2.6"
},
"jest": {
"modulePathIgnorePatterns": [
"dist"
]
}
}