-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "NodeAPI",
"version": "1.0.0",
"author": "Evgeny Aleksandrov",
"description": "Simple example of RESTful API with Node.js and passport",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "node ./test/server.test.js",
"generate": "node ./generateData.js"
},
"dependencies": {
"body-parser": "^1.20.x",
"express": "^4.21.x",
"faker": "^5.1.0",
"mongoose": "^6.13.x",
"nconf": "^0.11.4",
"oauth2orize": "^1.11.x",
"passport": "^0.6.x",
"passport-http": "^0.3.x",
"passport-http-bearer": "^1.0.x",
"passport-oauth2-client-password": "^0.1.x",
"winston": "^3.2.x"
},
"devDependencies": {
"superagent": "^6.1.0",
"tape": "^5.0.1"
},
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": false,
"newcap": false,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"strict": false,
"scripturl": true,
"evil": true,
"globals": {
"location": true,
"printStackTrace": false
},
"browser": true,
"node": true
},
"license": "MIT"
}