forked from mozilla/ensemble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.67 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
{
"name": "ensemble",
"version": "1.2.0",
"private": true,
"engines": {
"node": ">=8"
},
"scripts": {
"start": "npm-run-all --parallel watch:css watch:app",
"watch:css": "stylus --watch --sourcemap src/components/views/styl/* --out ./src/components/views/css/",
"watch:app": "react-scripts start",
"build": "npm-run-all build:*",
"build:css": "stylus --sourcemap ./src/components/views/styl/* --out ./src/components/views/css/",
"build:app": "react-scripts build",
"build:version.json": "node scripts/generateVersionJSON",
"test": "npm-run-all lint test:jest test:nightwatch:dev",
"lint": "npm-run-all lint:*",
"lint:js-extra": "npx eslint --config .eslintrc.extra.js --ext .js --ext .json .",
"lint:styl": "stylint src/components/views/styl",
"test:jest": "CI=true react-scripts test",
"test:nightwatch:dev": "NIGHTWATCH_TARGET=dev nightwatch --env jsDisabled,default",
"test:nightwatch:stage": "NIGHTWATCH_TARGET=stage nightwatch --env jsDisabled,default",
"test:nightwatch:prod": "NIGHTWATCH_TARGET=prod nightwatch --env jsDisabled,default",
"posttest": "npm audit || true",
"size": "source-map-explorer build/static/js/main.*"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"d3-scale": "3.2.1",
"d3-selection": "1.4.1",
"d3-shape": "1.3.7",
"d3-transition": "1.3.2",
"dateformat": "3.0.3",
"distinct-colors": "3.0.0",
"markdown-it": "11.0.0",
"markdown-it-sup": "1.0.0",
"memoize-one": "5.1.1",
"metrics-graphics": "2.15.6",
"npm-run-all": "4.1.5",
"react": "16.13.1",
"react-app-polyfill": "1.0.6",
"react-dom": "16.13.1",
"react-ga": "3.0.0",
"react-helmet": "6.1.0",
"react-loadable": "5.5.0",
"react-metrics-graphics": "1.1.2",
"react-refetch": "3.0.1",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-spinners": "0.9.0",
"stylus": "0.54.7"
},
"devDependencies": {
"chromedriver": "83.0.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint-plugin-jest": "23.17.1",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.1",
"nightwatch": "1.3.6",
"react-test-renderer": "16.13.1",
"request": "2.88.2",
"source-map-explorer": "2.4.2",
"stylint": "2.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
]
}