-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 892 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
{
"name": "codewars",
"version": "1.0.0",
"description": "solutions for codewars tasks",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"test": "mocha-webpack --webpack-config webpack.config-test.js \"src/**/*.test.js\" --mode development",
"test:watch": "mocha-webpack --watch --webpack-config webpack.config-test.js \"src/**/*.test.js\" --mode development"
},
"author": "Ilgam Gabdullin",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-node-externals": "^1.7.2"
}
}