forked from VictorDanilov/andersen-js-course
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 675 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "andersen-js-course",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/VictorDanilov/andersen-js-course.git",
"author": "Viktor Danilov <wikslayer@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack"
},
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.17.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.0"
}
}