forked from overture-stack/arranger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
85
86
87
88
89
90
91
92
93
94
{
"version": "1.0.0",
"name": "@pilotdataplatform/arranger",
"description": "Pilot's version of arranger's faceted search",
"author": {
"name": "Indoc Research"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/PilotDataPlatform/arranger.git"
},
"exports": {
"./components/Arranger": "./modules/components/src/Arranger/index.js",
"./package.json": "./package.json"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"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=*",
"test": "lerna run test --stream",
"run-prod-server": "cd modules/server && npm run run-prod",
"dashboard": "export STORYBOOK_ENV=dev; cd modules/components && npm run dashboard",
"portal": "cd modules/components && npm run portal",
"netlify-build": "npm i && npm run bootstrap -- --scope=@arranger/components --include-filtered-dependencies && cd modules/components && npm run build-storybook",
"tag": "lerna version --force-publish --yes"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.19.4",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@types/express": "^4.17.14",
"@types/graphql": "^14.0.0",
"@types/jest": "^23.3.14",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^10.12.2",
"@types/ramda": "^0.25.42",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/react-table": "^6.7.14",
"@types/recompose": "^0.27.0",
"@types/redux-devtools": "^3.0.44",
"babel-eslint": "^8.2.1",
"date-fns": "^1.30.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"graphql-fields": "^2.0.3",
"husky": "^4.3.0",
"jest": "^29.2.2",
"lerna": "^6.0.1",
"node-sass": "^4.14.1",
"npm-link-shared": "^0.5.3",
"paralleljs": "^1.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"typescript": "^3.9.10"
},
"dependencies": {
"kind-of": "^6.0.3",
"minimist": "^1.2.5"
},
"overrides": {
"@types/express-serve-static-core": "4.17.18",
"jest": "^29.2.2"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"semi": true,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}