-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.47 KB
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
{
"name": "sectors-without-number",
"version": "7.21.7",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mpigsley/sectors-without-number"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"start:prod": "sh -ac '. .env.prod; npm start'",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build && firebase deploy --except functions",
"deploy:functions": "firebase deploy --only functions",
"deploy:prod": "firebase use prod && sh -ac '. .env.prod; npm run deploy'",
"deploy:prod:functions": "firebase use prod && sh -ac '. .env.prod; npm run deploy:functions'",
"translate": "node ./src/utils/convert-translations.js"
},
"dependencies": {
"chance": "^1.0.18",
"classnames": "^2.2.6",
"connected-react-router": "^6.4.0",
"copy-to-clipboard": "^3.2.0",
"dayjs": "^1.8.14",
"firebase": "^7.3.0",
"history": "^4.9.0",
"is-url-external": "^1.0.3",
"lodash": "^4.17.14",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-color": "^2.17.3",
"react-dom": "^16.10.1",
"react-fastclick": "^3.0.2",
"react-feather": "^2.0.3",
"react-hint": "^3.2.0",
"react-intl": "^2.9.0",
"react-loadable": "^5.5.0",
"react-markdown": "^8.0.5",
"react-measure": "^2.3.0",
"react-modal": "^3.8.1",
"react-redux": "^7.2.0",
"react-redux-toastr": "^7.5.1",
"react-router-dom": "^5.0.1",
"react-select": "^1.2.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.15.2",
"firebase-tools": "^11.24.1",
"prettier": "^2.8.4",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.5.2",
"sass": "^1.59.3",
"source-map-explorer": "^2.4.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!node_modules",
"!src/components/**/index.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}