-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
63
{
"name": "reactor-api",
"version": "1.0.0",
"description": "An example API built with Node.js",
"scripts": {
"start": "babel-node ./src/index.js",
"dev": "nodemon --exec ./node_modules/.bin/babel-node ./src/index.js",
"populate-db": "node ./src/db/populate-db.js",
"lint": "eslint src",
"test": "nyc mocha",
"flow": "flow"
},
"author": "Pezhman Parsaee",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-flow": "^7.10.4",
"@babel/runtime": "^7.11.2",
"async": "^2.6.3",
"cookie-session": "^1.4.0",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"moment-jalaali": "^0.8.3",
"mongodb": "^3.6.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-mocha": "0.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"flow-bin": "^0.114.0",
"husky": "^4.3.0",
"mocha": "^6.2.3",
"nodemon": "^1.19.4",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
},
"engines": {
"node": "10.15.3"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}