-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "robotgame",
"version": "1.0.0",
"description": "a minigame write with phaser",
"main": "index.js",
"scripts": {
"build": "webpack --mode development",
"build:watch": "webpack -w --mode development",
"build:prod": "webpack --mode production",
"go": "webpack-dev-server --host 0.0.0.0 --port 7000",
"stylelint": "npx stylelint ./src/css/*.css",
"eslint": "npx eslint ./src/**/*.js",
"eslint2": "npx eslint ./test/*.js",
"test": "jest"
},
"author": "Thiago Miranda",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^1.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.11.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"regenerator-runtime": "^0.13.7"
}
}