-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "awesome-html",
"version": "0.0.1",
"description": "html parser",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "webpack-dev-server --config webpack.config.js --hot --inline",
"build": "webpack --config webpack.config.js"
},
"keywords": [
"html"
],
"author": "Vadim Zaynetdinov [email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.6.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.9.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"core-js": "^3.6.4"
}
}