This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "start-nodejs",
"version": "1.0.0",
"description": "Summaries App",
"main": "index.js",
"author": "Alex Panchuk <[email protected]>",
"license": "MIT",
"scripts": {
"start":
"rimraf ./dist && babel -d ./dist ./src -s && node ./dist/server.js",
"dev": "nodemon dev.js",
"test": "cross-env NODE_ENV=test jest src",
"seed": "babel-node src/seeds",
"dropdb": "babel-node src/utils/dropdb.js",
"lint:js": "eslint ./src",
"precommit": "eslint ./src"
},
"devDependencies": {
"cross-env": "^5.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"bcrypt": "^1.0.3",
"config": "^1.28.1",
"dotenv": "^4.0.0",
"faker": "^4.1.0",
"jsonwebtoken": "^8.1.0",
"keymirror": "^0.1.1",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.3.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.4",
"mongoose-unique-validator": "^1.0.6",
"rimraf": "^2.6.2",
"uuid": "^3.1.0"
},
"eslintConfig": {
"root": true,
"extends": ["airbnb-base", "prettier"],
"env": {
"node": true,
"jest": true
},
"globals": {
"AppError": true
},
"rules": {
"no-console": 0,
"func-names": 0,
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"linebreak-style": 0
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
]
},
"jest": {
"testEnvironment": "node",
"browser": false
}
}