-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.42 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-p \"build:*\"",
"build:remix": "remix build",
"build:css": "tailwindcss -m -i ./src/styles/app.css -o styles/app.css",
"dev": "run-p \"dev:*\"",
"dev:remix": "PORT=3001 remix dev",
"dev:css": "tailwindcss -w -i ./src/styles/app.css -o styles/app.css",
"start": "remix-serve build",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"@crystallize/js-api-client": "^2",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"dayjs": "^1.11.5",
"jsonwebtoken": "^8.5.1",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2",
"@crystallize/design-system": "^1.12.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/react": "^18.0.15",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"tailwindcss": "^3.3.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}