-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "capstone-project",
"version": "0.0.1",
"description": "A capstone-project for the web development bootcamp at neue fische",
"author": "Marc Bendixen <moin@marcbendixen.de>",
"license": "ISC",
"main": "server.js",
"scripts": {
"dev": "npm-run-all --parallel dev:client dev:server",
"dev:client": "cd client && npm start",
"dev:server": "nodemon server.js",
"start": "node server.js",
"build": "cd client && npm run build",
"postinstall": "cd client && npm install",
"storybook": "cd client && npm run storybook",
"test": "cd client && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcbendixen/capstone-project.git"
},
"bugs": {
"url": "https://github.com/marcbendixen/capstone-project/issues"
},
"homepage": "https://github.com/marcbendixen/capstone-project#readme",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^5.0.0-alpha.8",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
}
}