-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next",
"build:stage": "env-cmd -f .env.staging next build && env-cmd -f .env.staging next export",
"build": "next build && next export",
"optimize-svg": "svgo --disable=removeViewBox --enable=prefixIds,removeDimensions src/assets/svgs/*.svg",
"tsc": "tsc -p tsconfig.json",
"check-all": "yarn tsc && yarn test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"clsx": "^1.1.1",
"common": "0.1.0",
"firebase": "^7.21.0",
"fuse.js": "^6.4.6",
"immutable": "^4.0.0-rc.12",
"next": "^10.0.6",
"next-transpile-modules": "^6.3.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-calendar": "^3.3.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-dom-confetti": "^0.2.0",
"react-firebaseui": "^4.1.0",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"react-test-renderer": "^17.0.1",
"redux": "^4.0.5",
"reselect": "^4.0.0"
},
"devDependencies": {
"@types/react": "17.0.2",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-calendar": "^3.1.3",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.1",
"@types/react-modal": "^3.12.0",
"@types/react-redux": "7.1.3",
"@types/react-test-renderer": "^17.0.1",
"env-cmd": "^10.1.0",
"node-sass": "^5.0.0",
"svgo": "^1.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}