-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 915 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
{
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"copy-webpack-plugin": "^5.0.5",
"file-loader": "^4.2.0"
},
"name": "codejam-virtual-keyboard",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"build": "webpack --mode production --config ./webpack.config.js",
"watch": "webpack --mode development --config ./webpack.config.js --watch",
"open": "webpack-dev-server --open",
"start": "webpack-dev-server"
},
"author": "Larisa Morozhnikova",
"license": "ISC",
"description": "",
"dependencies": {
}
}