-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "webpack-babel7-starter",
"version": "1.0.0",
"description": "includes webpack src->dist, babel7, linting settings for vscode",
"main": "index.js",
"author": "adrian mui <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"babel-loader": "^8.0.0-beta.3",
"concurrently": "^3.5.1",
"dotenv": "^6.0.0",
"lodash": "^4.17.10"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"start": "node dist/bundle.js",
"dev": "yarn build && node dist/bundle.js",
"dev:watch": "yarn build && concurrently \"yarn build:watch\" \"nodemon dist/bundle.js\""
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.13.5",
"prettier-eslint": "^8.8.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4"
}
}