-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 984 Bytes
/
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
{
"name": "pgp-test-milkapp",
"version": "1.0.0",
"description": "Fullstack milk store app - pgp test",
"main": "server.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dokratos/pgp-test-milkApp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dokratos/pgp-test-milkApp/issues"
},
"homepage": "https://github.com/dokratos/pgp-test-milkApp#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"react-slider": "^2.0.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/react-slider": "^1.3.1",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
}
}