-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.24 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
{
"name": "screeps-ojbk",
"version": "1.0.0",
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"start": "webpack --colors --watch --env.ENV=local",
"start:remote": "webpack --colors --watch --env.ENV=dev",
"doc": "typedoc --options ./typedoc.json && open ./doc/index.html",
"build": "webpack --colors --env.ENV=production",
"dts": "dts-generator --project ./ --out ./gen.d.ts",
"lint": "lint-staged",
"lint:es": "eslint --fix \"src/**/*.ts\"",
"lint:webpack": "eslint --fix \"config/**/*.ts\" \"webpack.config.ts\""
},
"pre-commit": ["lint"],
"lint-staged": {
"README.md": ["prettier --use-tabs --write", "git add"],
"package.json": ["prettier --use-tabs --write", "git add"],
"src/**/*.js": [
"prettier --trailing-comma all --print-width 100 --single-quote --use-tabs --write",
"git add"
],
"src/**/*.ts": ["eslint --fix", "git add"],
"config/**/*.ts": ["eslint --fix", "git add"],
"webpack.config.ts": ["eslint --fix", "git add"]
},
"dependencies": {
"@types/screeps": "^2.2.1",
"dts-generator": "^2.1.0",
"screeps-webpack-plugin":
"git://github.com/langri-sha/screeps-webpack-plugin.git",
"source-map": "^0.6.1"
},
"devDependencies": {
"@types/lodash": "3.10.1",
"@types/node": "^9.6.0",
"@types/source-map": "^0.5.7",
"@types/tether": "^1.4.3",
"@types/webpack": "^4.1.2",
"@types/webpack-sources": "^0.1.4",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-typescript": "^0.10.0",
"fork-ts-checker-webpack-plugin": "^0.2.10",
"fs-extra": "^5.0.0",
"git-rev-sync": "^1.9.1",
"lint-staged": "^4.2.3",
"moment": "^2.22.1",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"source-map-loader": "^0.2.1",
"ts-loader": "^3.5.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"typescript-eslint-parser": "^15.0.0",
"typings": "^2.1.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.10.0"
}
}