-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1020 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
35
36
{
"name": "registrar-middleware",
"version": "1.0.0",
"description": "Name Service registration middleware",
"main": "dist",
"repository": "https://github.com/nos/registrar-middleware",
"author": "Matt Huggins",
"license": "Proprietary",
"private": true,
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\"",
"build": "babel src -s -D -d dist",
"start": "node dist",
"prestart": "yarn build",
"lint": "eslint --color src"
},
"dependencies": {
"@cityofzion/neon-js": "^3.9.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-auth-parser": "^0.1.2",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^1.17.5"
}
}