-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.28 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
95
96
97
98
99
100
101
102
{
"name": "website",
"version": "0.1.0",
"private": true,
"dependencies": {
"@clearlydefined/spdx": "^0.1.1",
"ant-design-palettes": "^1.1.3",
"antd": "^3.16.3",
"base64-js": "^1.3.0",
"color-scheme": "^1.0.1",
"deep-diff": "^1.0.2",
"event-stream": "^3.3.4",
"file-saver": "^1.3.8",
"is-negative-zero": "^2.0.0",
"is-valid-glob": "^1.0.0",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"moment": "^2.24.0",
"@monaco-editor/react": "^2.3.0",
"monaco-editor": "^0.18.1",
"pako": "^1.0.6",
"protobufjs": "^6.8.8",
"react": "^16.4.1",
"react-bootstrap": "^0.32.3",
"react-bootstrap-typeahead": "^3.4.6",
"react-bs-notifier": "^4.4.6",
"react-copy-to-clipboard": "^5.0.1",
"react-countup": "^4.0.0",
"react-dom": "^16.4.1",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.4.4",
"react-ui-cards": "^1.5.0",
"react-virtualized": "^9.19.1",
"recharts": "^1.4.2",
"redux": "^3.7.2",
"redux-persist": "^4.6.0",
"redux-thunk": "^2.3.0",
"spdx-compare": "^1.0.0",
"spdx-license-ids": "^3.0.7",
"spdx-satisfies": "^5.0.0",
"throat": "^4.1.0",
"typescript": "^3.7.2",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-env": "^1.7.0",
"core-js": "^3.4.1",
"cpx": "^1.5.0",
"env-cmd": "^8.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^3.0.1",
"fetch-mock": "^7.1.0",
"identity-obj-proxy": "^3.0.0",
"jest-enzyme": "^7.1.2",
"jest-puppeteer": "^3.8.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.16.3",
"puppeteer": "^1.14.0",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.13.3",
"serve": "^11.0.0"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"build-scripts": "npm-run-all -p build watch-css start-js",
"start": "env-cmd --fallback ./.env npm run build-scripts",
"start:dev-api": "env-cmd --fallback ./.env.development npm run build-scripts",
"start:local-api": "env-cmd --fallback ./.env.localhost npm run build-scripts",
"start:prod-api": "env-cmd --fallback ./.env.production npm run build-scripts",
"build": "env-cmd --fallback ./.env.production npm run build-css && react-scripts --max_old_space_size=4096 build",
"test": "jest --no-cache -w 2 --watchAll=false --coverage",
"test:unit": "jest -c jest.config.unit.js",
"test:integration": "jest -c jest.config.integration.js",
"eject": "react-scripts eject",
"e2e:test": "jest -c e2e/jest.config.js --detectOpenHandles --no-cache"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}