-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "open-rummy",
"version": "0.0.0",
"description": "A companion website for playing the Open Rummy card game",
"scripts": {
"prestart": "rimraf ./build",
"start": "webpack-dev-server --open --config ./_scripts/webpack.config.js --content-base ./public/dist",
"prebuild": "rimraf ./build",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./_scripts/webpack.config.js --optimize-minimize",
"prewebpack": "rimraf ./build",
"webpack": "webpack --watch --mode development --config ./_scripts/webpack.config.js",
"lint": "eslint -c ./package.json ./"
},
"engines": {
"node": "^16.0.0"
},
"author": "Glenn de Haan",
"license": "MIT",
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"no-console": 0,
"react/prop-types": 0,
"comma-dangle": [
"error",
"never"
],
"indent": [
"error",
4
]
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"settings": {
"react": {
"pragma": "h",
"version": "16.0"
}
}
},
"eslintIgnore": [
"public/dist"
],
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clsx": "^1.1.1",
"copy-webpack-plugin": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.2",
"eslint": "^7.22.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"mitt": "^2.1.0",
"node-sass": "^8.0.0",
"preact": "^10.1.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"rimraf": "^3.0.0",
"sass-loader": "^10.4.1",
"unistore": "^3.5.1",
"uuid": "^8.3.2",
"webpack": "^5.25.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}