-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "udrive-car-rental",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"scripts": {
"lint": "cd server && npm run lint",
"lint-client": "cd client && npm run lint",
"start": "cd server && npm run start",
"dev": "cd server && npm run dev",
"test": "cd server && npm t ",
"lint-fix": "cd server && npm run lint-fix",
"heroku-postbuild": "cd client && npm install && npm run build",
"package-install": "cd server && npm i && cd ../client && npm i",
"install": "npm run package-install",
"start-client": "cd client && npm start"
},
"pre-commit": [
"lint",
"lint-client",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G10/udrive-car-rental.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G10/udrive-car-rental/issues"
},
"homepage": "https://github.com/GSG-G10/udrive-car-rental#readme",
"dependencies": {
"@date-io/moment": "^2.11.0",
"@mui/lab": "^5.0.0-alpha.53",
"@mui/styles": "^5.0.2",
"supertest": "^6.1.6"
}
}