-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "plants4friends",
"version": "1.0.0",
"description": "swap plants online",
"main": "server.js",
"scripts": {
"test": "jest",
"dev-client": "cd client && npm run start",
"dev-storybook": "cd client && npm run storybook",
"dev-server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run dev-server\" \"npm run dev-client\"",
"prod-prebuild": "npm install && cd client && npm install",
"prod-build": "cd client && npm run build && npm run build-storybook",
"lint": "eslint '*/**/*.{js}' --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hauptdigital/plants4friends.git"
},
"author": "Marc Haupt",
"license": "MIT",
"bugs": {
"url": "https://github.com/hauptdigital/plants4friends/issues"
},
"homepage": "https://github.com/hauptdigital/plants4friends#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"nodemon": "^2.0.4"
},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"mongoose": "^5.9.19",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": "eslint --fix",
"*.{js,jsx,md,html,css}": "prettier --write"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}