-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
40
41
42
{
"name": "bikeshare-api",
"version": "1.0.0",
"description": "api for showing availability of bikes on all stations",
"main": "api.js",
"scripts": {
"build": "babel src --out-dir dist",
"dev": "nodemon --exec npm run restart",
"restart": "rimraf dist && npm run build && npm run start",
"start": "node dist/api.js",
"lint": "eslint -c .eslintrc.js src test",
"lint-fix": "eslint -c .eslintrc.js --fix src test",
"test": "mocha --exit --require @babel/register"
},
"author": "Per Halvor Tryggeseth",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"express": "^4.17.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-core": "^7.0.0-bridge.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"supertest": "^4.0.2"
}
}