-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 817 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
31
{
"name": "service-provider",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015\"",
"build": "babel src -s -D -d dist --presets es2015",
"start": "node dist",
"prestart": "npm run -s build",
"test": "eslint src"
},
"author": "DIDARUL AMIN",
"license": "ISC",
"dependencies": {
"nodemon": "^1.19.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"passport": "^0.4.0",
"passport-saml": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"cors": "^2.7.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^4.18.2"
}
}