-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "hackweek",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/react": "^6.7.1",
"@sentry/tracing": "^6.7.1",
"bootstrap": "3",
"firebase": "^7.24.0",
"firebase-bolt": "^0.8",
"idx": "^2.5.6",
"marked": "^0.3.6",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.14.0",
"react-dropzone": "^4.2.1",
"react-google-button": "^0.4.0",
"react-gravatar": "^2.6.3",
"react-redux": "^5.1.2",
"react-redux-firebase": "^1.5.1",
"react-router": "^3.2.6",
"react-scripts": "^5.0.1",
"react-select": "^1.0.0-rc.10",
"redux": "^3.7.2",
"summarize-markdown": "^0.3.1"
},
"scripts": {
"start": "npm run bind-version && react-scripts start",
"bind-version": "echo \"{\\\"version\\\": \\\"$(git rev-parse HEAD)\\\"}\" > src/version.json",
"build": "npm run bind-version && react-scripts build",
"deploy": "npm run bind-version && NODE_ENV=production firebase deploy -P default",
"deploy-dev": "npm run bind-version && NODE_ENV=production firebase deploy -P dev",
"predeploy": "npm run bind-version && NODE_ENV=production react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"jest-junit": "^3.1.0"
},
"jest-junit": {
"suiteName": "jest tests",
"output": "./junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "16.15.1"
}
}