-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "paint-test",
"version": "1.0.0",
"description": "Paint test",
"scripts": {
"build": "webpack --env.mode production",
"watch": "webpack-dev-server --env.mode development --hot --inline",
"test": "jest",
"debug-test": "node --inspect-brk node_modules/.bin/jest --runInBand",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giodelabarrera/paint-test.git"
},
"author": "Giorgio de la Barrera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/giodelabarrera/paint-test/issues"
},
"homepage": "https://github.com/giodelabarrera/paint-test#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-canvas-mock": "^1.1.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}