-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
{
"name": "autharmor-sample-node",
"version": "2.0.0-alpha.1",
"main": "api/index.js",
"license": "MIT",
"homepage": "https://github.com/AuthArmor/autharmor-sample-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/AuthArmor/autharmor-sample-node.git"
},
"scripts": {
"start": "node ./api/index.js",
"start:watch": "nodemon ./api/index.js --config ./nodemon.json"
},
"devDependencies": {
"@types/ws": "^7.4.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.12",
"prettier": "^1.19.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"dependencies": {
"autharmor-node-sdk": "^3.0.0-beta.27",
"babel-eslint": "^10.1.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1"
}
}