-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 972 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
33
34
35
36
37
38
{
"name": "spellcheck",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "node ./bin/www",
"start": "node start.js",
"compile": "webpack",
"test": "jest"
},
"dependencies": {
"@babel/preset-env": "^7.4.5",
"cluster": "^0.7.7",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"extract-text-webpack-plugin": "^3.0.2",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"request": "^2.88.0",
"supertest": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.0",
"webpack-manifest-plugin": "^2.0.4"
},
"devDependencies": {
"babel-loader": "^8.0.6",
"babel-preset-es2015-tree-shaking": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.18.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"webpack-cli": "^3.3.5"
}
}