-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 835 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
{
"name": "nodejs-api-skeleton",
"version": "0.1.0",
"description": "A skeleton to start Api projects with node.js",
"main": "index.js",
"scripts": {
"start": "node app/index.js",
"lint": "node_modules/.bin/eslint ./app/** --ext .js",
"integration-test": "node_modules/.bin/mocha ./app/**/test/integration.test.js",
"precommit": "docker-compose -f lint.docker-compose.yml up"
},
"keywords": [
"skeleton",
"api",
"nodejs"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.15.3"
},
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"husky": "^0.14.3",
"mocha": "^3.5.0",
"supertest": "^3.0.0"
}
}