-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "webpacker",
"version": "1.0.0",
"description": "Webpack boilerplate for writing javascript applications",
"main": "index.js",
"author": "Nick Groenewegen",
"license": "MIT",
"private": false,
"scripts": {
"start": "npx webpack-dev-server --config webpack/webpack.development.js",
"test": "npx jest --no-cache",
"cypress:ci": "npx cypress run",
"cypress:interactive": "npx cypress open",
"lint": "npx eslint --ext .js cypress jest webpack src",
"build": "npx webpack --config webpack/webpack.development.js",
"dist": "npx webpack --config webpack/webpack.production.js"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"cypress": "^3.4.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.6.0"
}
}