forked from GatewaySoftwareEngineering/PFM-With-Remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"private": true,
"sideEffects": false,
"scripts": {
"dev": "concurrently \"yarn sass:dev\" \"yarn remix dev\"",
"sass:dev": "sass -q --no-source-map --watch styles/:app/styles",
"sass:build": "sass styles/:app/styles",
"build": "yarn sass:build && remix build",
"start": "remix-serve build",
"seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
"concurrently": "^7.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"isbot": "^3.6.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-paginate": "^8.1.4",
"react-select": "^5.7.0",
"sass": "^1.57.1"
},
"devDependencies": {
"@remix-run/dev": "^1.9.0",
"@remix-run/eslint-config": "^1.9.0",
"eslint": "^8.31.0",
"prisma": "^4.11.0"
},
"engines": {
"node": ">=14"
}
}