-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "webservice",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "babel-node src/index",
"start:prod": "cross-env NODE_ENV=prod babel-node src/index",
"test:integration": "cross-env NODE_ENV=test mocha --opts __tests__/integration/mocha.opts __tests__/integration/**/*.test.js",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix"
},
"author": "Jr Silva",
"license": "Commercial",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.1",
"nodemon": "^1.18.4",
"sha1": "^1.1.1",
"table": "^4.0.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"boom": "^5.2.0",
"chai": "^4.1.2",
"consign": "^0.1.6",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"filter-files": "^0.4.0",
"is-directory": "^0.3.1",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.11",
"mongodb": "^3.0.3",
"mongoose": "^5.0.7",
"nanoid": "^1.0.2",
"sequelize": "^4.33.4",
"supertest": "^3.0.0"
}
}