-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "nodejs-api-training",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:smooth-code/nodejs-api-training.git",
"scripts": {
"format": "prettier --write \"**/*.m?js\"",
"build": "babel src -d lib",
"lint": "eslint .",
"start": "nodemon src/server.js",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"prettier": "^1.12.0",
"supertest": "^3.0.0"
},
"dependencies": {
"add": "^2.0.6",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"busboy": "^0.2.14",
"chalk": "^2.4.0",
"commander": "^2.15.1",
"express": "^4.16.3",
"express-oauth-server": "^2.0.0",
"knex": "^0.14.6",
"objection": "^1.1.6",
"ora": "^2.0.0",
"sqlite3": "^4.0.0"
}
}