-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-p \"build:*\"",
"build:remix": "remix build",
"build:css": "sass -q --no-source-map src/styles/app.scss:src/styles/app.css",
"dev": "run-p \"dev:*\"",
"dev:remix": "remix vite:dev",
"dev:sass": "sass -q --no-source-map --watch src/styles/app.scss:src/styles/app.css",
"start": "remix-serve build",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"@crystallize/js-api-client": "^2.5.0",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@remix-run/v1-route-convention": "^0.1.4",
"bootstrap": "^5.2.1",
"isbot": "^4",
"jsonwebtoken": "^8.5.1",
"react": "^18.2.0",
"react-debounce-input": "^3.3.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.8.0"
}
}