-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "clempire",
"version": "1.0.0",
"description": "Idle game",
"main": "app.js",
"private": true,
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --mode development --config webpack.config.js",
"lint": "prettier --config .prettierrc --ignore-path .gitignore --check '**/*.{js,json}' && eslint -c .eslintrc.json 'src/**/*.js'",
"format": "prettier --config .prettierrc --ignore-path .gitignore --write '**/*.{js,json}' && eslint -c .eslintrc.json 'src/**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NiklasEi/clempire.git"
},
"keywords": [
"idle",
"game"
],
"author": "Niklas Eicker",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/NiklasEi/clempire/issues"
},
"homepage": "https://github.com/NiklasEi/clempire#readme",
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/preset-env": "7.5.0",
"babel-loader": "8.0.6",
"babel-polyfill": "6.26.0",
"copy-webpack-plugin": "6.3.0",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "32.2.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "3.1.3",
"prettier": "2.0.5",
"terser-webpack-plugin": "4.2.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
}
}