-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "koa-nodejs-application",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"bin": {
"hexlet": "dist/bin/hexlet.js"
},
"engines": {
"node": "9"
},
"jest": {
"testEnvironment": "node",
"snapshotSerializers": [
"jest-serializer-html"
]
},
"scripts": {
"gulp": "gulp",
"sequelize": "sequelize",
"nodemon": "nodemon",
"test": "NODE_ENV=test jest",
"babel-node": "babel-node",
"server": "babel-node bin/index.js",
"flow": "flow",
"flow-typed": "flow-typed",
"start": "gulp server",
"eslint": "eslint",
"lint": "eslint .",
"webpack": "webpack",
"jest-html": "jest-html",
"migration": "sequelize db:migrate",
"build": "npm run webpack -- -p --env production",
"postinstall": "npm run build && npm run migration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/nodejs-package.git"
},
"author": "Ildar Gilfanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/nodejs-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/nodejs-package#readme",
"dependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/node": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.54",
"@babel/polyfill": "7.0.0-beta.31",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"@babel/preset-stage-0": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"@fortawesome/fontawesome-free": "^5.1.1",
"autoprefixer": "^9.0.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.0-beta.4",
"bootstrap": "^4.1.1",
"child-process-promise": "^2.2.1",
"css-loader": "^0.28.11",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"gravatar": "^1.6.0",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-util": "^3.0.8",
"jquery": "^3.3.1",
"jquery-ujs": "^1.2.2",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-flash-simple": "0.0.3",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-methodoverride": "^2.0.0",
"koa-pug": "^3.0.0-2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"koa-webpack": "^3.0.2",
"lodash": "^4.17.10",
"mime": "^2.3.1",
"pg": "^7.4.3",
"rollbar": "^2.4.2",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0",
"sequelize-test-setup": "0.0.4",
"sqlite3": "^4.0.2",
"style-loader": "^0.21.0",
"umzug": "^2.1.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-flow": "^7.0.0-beta.54",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.4.0",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.0",
"faker": "^4.1.0",
"flow-bin": "^0.56.0",
"flow-typed": "^2.4.0",
"jest-cli": "^23.1.0",
"jest-serializer-html": "^5.0.0",
"jest-supertest-matchers": "0.0.1",
"json-loader": "^0.5.7",
"node-sass": "^4.9.2",
"nodemon": "^1.17.5",
"postcss-loader": "^2.1.6",
"regenerator-runtime": "^0.12.0",
"sass-loader": "^7.1.0",
"supertest": "^3.1.0"
}
}