-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1011 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1011 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "quantum-auth",
"version": "0.1.0",
"description": "authentication api framework",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel server.js --out-dir build",
"start-dev": "babel-watch server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munsonwf/quantum-auth.git"
},
"keywords": [
"authentication",
"authorization",
"user",
"api"
],
"author": "Wyatt M",
"license": "ISC",
"bugs": {
"url": "https://github.com/munsonwf/quantum-auth/issues"
},
"homepage": "https://github.com/munsonwf/quantum-auth#readme",
"dependencies": {
"bcrypt": "^3.0.2",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"make-runnable": "^1.3.6",
"moment": "^2.22.2",
"pg": "^7.7.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-watch": "^2.0.7"
}
}