-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "webpack-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack serve"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "6.8.x",
"eslint-config-airbnb-base": "14.1.x",
"eslint-plugin-import": "2.20.x",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylelint": "13.3.x",
"stylelint-config-standard": "20.0.x",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "3.17.x",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"import": "^0.0.6",
"node-fetch": "^2.6.1",
"phaser": "^3.52.0"
},
"jest": {
"setupFiles": [
"jest-canvas-mock",
"<rootDir>/jest.setup.js"
]
}
}