-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "controller-overlay",
"version": "0.7.0",
"description": "Display an overlay to show your controller(s) input",
"main": "app/index.js",
"scripts": {
"dev": "webpack --env=dev",
"build": "webpack",
"test": "npm run lint",
"lint": "tslint -p tsconfig.json -c tslint.yaml",
"prettier": "prettier --write '**/*.{ts,tsx}'"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/danikaze/controller-overlay.git"
},
"author": "danikaze <danikaze@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/danikaze/controller-overlay/issues"
},
"homepage": "https://github.com/danikaze/controller-overlay#readme",
"devDependencies": {
"@types/webpack": "^5.28.0",
"copy-webpack-plugin": "^8.1.1",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"ts-loader": "^8.1.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslint": "^6.1.3",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-lines-between-class-members": "^1.3.6",
"tslint-loader": "^3.5.4",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^5.0.0",
"typescript": "^4.2.4",
"typescript-tslint-plugin": "^1.0.1",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
}
}