-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 729 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 729 Bytes
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
{
"name": "fullstack-osa4",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"watch": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test jest --verbose",
"lint": "eslint ."
},
"author": "Markus Jantunen",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.2",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"jest": "^22.4.2",
"nodemon": "^1.15.1",
"supertest": "^3.0.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.7"
}
}