-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
46
47
48
49
50
51
52
53
54
{
"name": "dispodisco",
"version": "0.0.1",
"description": "Final Team-Project for neueFische CGN20/04",
"main": "index.js",
"private": true,
"scripts": {
"test": "npm run lint && cd client && npm run test",
"hooksInstall": "husky install",
"postinstall": "cd client && npm i ",
"client": "cd client && npm run start",
"fakeDB": "json-server --watch db.json",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"lint": "eslint . --ext .js",
"dev": "cd client && concurrently \"npm run start\" \"npm run storybook\"",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiscoDevs/DispoDisco.git"
},
"keywords": [
"awesome",
"bikemessenger",
"disco"
],
"author": "Team AllGlorious",
"license": "MIT",
"bugs": {
"url": "https://github.com/DiscoDevs/DispoDisco/issues"
},
"homepage": "https://github.com/DiscoDevs/DispoDisco#readme",
"devDependencies": {
"eslint": "^7.13.0",
"husky": "^5.0.4",
"json-server": "^0.16.3",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.0"
},
"dependencies": {
"concurrently": "^5.3.0",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json}": "prettier --write",
"*.{js,css,md}": "prettier --write"
}
}