-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "inventory-oauth2-application",
"version": "1.0.0",
"description": "A sample oauth 2.0 server application for partner",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"lint:fix": "eslint . --fix",
"fix": "eslint . --fix",
"prettier": "prettier --write ."
},
"author": "Onshape Developer",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"ejs": "^3.0.1",
"eslint-plugin-import": "^2.29.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mongoose": "^5.8.4",
"nodemon": "^2.0.2",
"oauth2orize": "^1.11.0",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.5.0",
"sleep": "^6.1.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.2.5"
}
}