-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "snuxplore",
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:sass && remix build",
"sass": "sass --watch app/:app/",
"build:sass": "sass app/:app/",
"dev": "concurrently \"npm run sass\" \"remix dev\"",
"start": "remix-serve build"
},
"dependencies": {
"@react-google-maps/api": "^2.12.1",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"cross-env": "^7.0.3",
"fuse.js": "^6.6.2",
"moment": "^2.29.4",
"npm-run-all": "^4.1.5",
"phosphor-react": "^1.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^9.3.5",
"react-responsive": "^9.0.0-beta.10",
"react-select": "^5.4.0",
"remix-auth": "^3.2.2",
"remix-auth-google": "^1.1.0"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"concurrently": "^7.2.1",
"eslint": "^8.15.0",
"sass": "^1.52.1"
},
"engines": {
"node": ">=14"
}
}