-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.01 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
{
"name": "hackweek",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/react": "^6.7.1",
"@sentry/tracing": "^6.7.1",
"bootstrap": "3",
"canvas-confetti": "^1.9.3",
"firebase": "^7.24.0",
"firebase-bolt": "^0.8",
"framer-motion": "^4.1.17",
"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-router-scroll": "^0.4.4",
"react-scripts": "^5.0.1",
"react-select": "^5.10.1",
"recharts": "^2.8.0",
"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 --only hosting,database --project hackweek-34e1d",
"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": {
"@types/react-select": "^5.0.0",
"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"
}
}