-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 899 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 899 Bytes
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
{
"name": "astro-api",
"version": "1.0.0",
"description": "Simple API for Resources in Astroneer",
"main": "index.js",
"scripts": {
"migrate": "npx prisma migrate dev --name init",
"seed": "node be/scripts/insert.js",
"setup": "npm i && npm run migrate && npm run seed && cd fe && npm i && cd ..",
"be": "node --watch be/index.js",
"fe": "npm --prefix fe start",
"start": "concurrently \"npm run be\" \"npm run fe\""
},
"author": "KovKor",
"type": "module",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.11.0",
"cors": "^2.8.5",
"express": "^4.18.3",
"notiflix": "^3.2.7",
"prettier": "^2.2.1",
"ts-loader": "^9.5.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prisma": "^5.11.0"
},
"prisma": {
"schema": "be/prisma/schema.prisma"
}
}