-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
41
42
43
44
45
46
47
48
{
"name": "node-swagger-api-template",
"version": "0.0.1",
"private": false,
"description": "A basic template to bootstrap the development of an API using Node and Swagger",
"keywords": [
"node",
"api",
"swagger"
],
"author": {
"name": "Jaume Capdevila",
"email": "contact@jaumecapdevila.net"
},
"license": "MIT",
"main": "server.js",
"dependencies": {
"express": "^4.12.3",
"mongoose": "^4.10.8",
"ramda": "^0.24.1",
"sprintf-js": "^1.1.1",
"swagger-express-mw": "^0.1.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^3.0.0",
"dotenv": "^1.2.0",
"eslint": "^4.7.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"mocha": "^2.2.5",
"request": "^2.58.0",
"should": "^7.1.0",
"supertest": "^1.0.0",
"z-schema": "^3.12.0"
},
"scripts": {
"start": "node server.js",
"test": "mocha ./test/api/controllers",
"lint": "eslint src/*.js api/controllers/*.js",
"swagger:edit": "swagger_swagger_fileName=api/controllers/swagger/swagger.yaml swagger project edit",
"precommit": "npm run lint",
"prepush": "npm run lint && npm test"
}
}