-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "recofy-server",
"version": "1.0.0",
"description": "server for recofy",
"main": "server.ts",
"scripts": {
"dev": "npm-run-all --parallel dev:client dev:server",
"dev:client": "cd client && npm start",
"dev:server": "nodemon server.ts",
"test": "cd client && npm test",
"storybook": "cd client && npm run storybook",
"build": "cd client && npm run build",
"start": "ts-node server.ts",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install --only=dev && npm install && npm run build"
},
"engines": {
"node": "14.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-Pet/capstone-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tim-Pet/capstone-project/issues"
},
"homepage": "https://github.com/Tim-Pet/capstone-project#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.5",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^3.6.9",
"mongoose": "^5.12.14",
"morgan": "^1.10.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}