forked from idzhurov/es6-starter-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 828 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
{
"name": "es6",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gulp server",
"build:dev": "gulp",
"build:prod": "gulp --production"
},
"keywords": [],
"author": "Ivan Dzhurov (dzhurovivan@gmail.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"del": "^5.1.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.2",
"lite-server": "^2.5.4",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"yargs": "^15.0.2"
}
}