-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 KB
/
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
37
38
39
{
"name": "ceta",
"version": "1.0.0",
"description": "JSON api wrapper over the CTA Train Tracker api",
"main": "index.js",
"author": "Conor Hawes",
"license": "MIT",
"scripts": {
"build": "babel ./src -d dist",
"start": "yarn build && node dist/server.js",
"start-dev": "NODE_ENV='development' nodemon src/server.js --exec babel-node",
"lint": "eslint ./src",
"test": "jest --env=node"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"date-fns": "^1.30.1",
"express": "^4.16.4",
"lodash": "^4.17.11",
"volleyball": "^1.5.1"
},
"devDependencies": {
"@launchpadlab/eslint-config": "^2.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.14.0",
"jest": "^23.6.0",
"nodemon": "^1.18.10"
}
}