-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "callisto-autho",
"version": "0.0.1",
"description": "authorization server for callisto",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-js": "nodemon dist/index.js",
"watch": "babel src/ -d dist/ --watch --source-maps inline --copy-files",
"start": "npm-run-all -p watch start-js",
"build": "babel src/ -d dist/ --source-maps inline --copy-files"
},
"repository": {
"type": "git",
"url": "github.com/xeivieni/callisto-autho"
},
"author": "xeivieni (Clément Mondion)",
"license": "ISC",
"dependencies": {
"@aclify/aclify": "^1.3.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"lodash": "^4.17.5",
"mongoose": "^5.1.1",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}