-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"start": "remix-serve build",
"build:css": "node-sass ./styles -o ./app/styles --output-style compressed",
"dev:css": "npm run build:css && node-sass -rw ./app/styles -o ./app/styles"
},
"dependencies": {
"@dicebear/avatars": "^4.10.5",
"@dicebear/avatars-identicon-sprites": "^4.10.5",
"@dicebear/avatars-male-sprites": "^4.10.5",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"@remix-run/serve": "^1.7.0",
"convert-svg-react": "^1.0.0",
"mongoose": "^6.6.3",
"node-sass": "8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.56.1",
"web-push": "^3.5.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"concurrently": "^7.3.0",
"eslint": "^8.20.0"
},
"engines": {
"node": ">=14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}