-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 KB
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
{
"name": "evolveidlescript",
"version": "1.0.0",
"description": "Evolve idle game bot",
"main": "src/index.js",
"author": "NotOats",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/NotOats/EvolveIdleScript.git"
},
"dependencies": {
"behaviortree": "^2.0.2",
"buefy": "^0.8.8",
"jquery": "^3.4.1",
"lz-string": "^1.4.4",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-proposal-private-methods": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@rollup/plugin-replace": "^2.2.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.18.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-userscript-header": "^1.0.0",
"rollup-plugin-vue": "^5.1.4",
"rollup-plugin-web-worker-loader": "^0.8.1",
"serve": "^11.2.0",
"vue-template-compiler": "^2.6.10"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"watch": "NODE_ENV=development rollup -c -w",
"dev": "npm-run-all --parallel watch start",
"start": "serve -l 42069 dist",
"lint": "eslint . --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
]
}