-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "product-api",
"version": "1.0.0",
"description": "This cool api is going to be used for storing your product information",
"main": "index.js",
"scripts": {
"start": "node ./bin/service.js",
"dev:watch": "export NODE_ENV=development && supervisor --watch src -- -r 'babel-register' ./bin/service.js",
"lint": "eslint --ext .js --ext .jsx src/",
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"build": "babel src/ --out-dir lib",
"test": "export NODE_ENV=test && npm run compile && mocha --compilers js:babel-core/register --recursive --watch-extensions .spec.js ./tests",
"test:watch": "npm run test -- --watch --bail ./tests",
"docker:dev": "npm install && npm run dev:watch",
"docker:test": "npm install && npm run test:watch",
"migrations:test": "node_modules/.bin/knex migrate:latest --env test",
"seed:test": "node_modules/.bin/knex seed:run --env test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayconbeserra/product-api.git"
},
"keywords": [
"nodejs",
"tdd",
"knex",
"migrations",
"babel",
"express"
],
"author": "Maycon Beserra",
"license": "ISC",
"bugs": {
"url": "https://github.com/mayconbeserra/product-api/issues"
},
"homepage": "https://github.com/mayconbeserra/product-api#readme",
"dependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-runtime": "^6.22.0",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"express": "^4.14.1",
"express-validator": "^3.1.2",
"knex": "^0.12.6",
"pg": "^6.1.2",
"sinon": "^1.17.7",
"supervisor": "^0.12.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
}
}