-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.31 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
{
"name": "scrapy-engine",
"version": "0.2.0",
"description": "A typescript WebGL game engine.",
"main": "dist/main.js",
"scripts": {
"serve": "webpack-dev-server --mode=development",
"build": "webpack --mode=development",
"build-release": "webpack --mode=production",
"lint": "eslint . --fix",
"prepare": "npm run build-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kam1ni/scrapy-engine.git"
},
"keywords": [
"scrapy",
"game",
"engine",
"typescript"
],
"author": "Kamil Krzysztof Kulach",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kam1ni/scrapy-engine/issues"
},
"homepage": "https://github.com/Kam1ni/scrapy-engine#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^12.0.2",
"file-loader": "^6.2.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"raw-loader": "^4.0.2",
"ts-loader": "9.5",
"typescript": "5.7",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"lint-staged": {
"./": [
"eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"dist/engine/*",
"dist/main.js",
"dist/main.js.map",
"dist/main.d.ts"
],
"dependencies": {
"eslint": "^6.8.0"
}
}