-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "Tetris",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"keywords": [],
"author": "",
"license": "MIT",
"scripts": {
"tsc": "tsc",
"clean": "rimraf dist/*",
"start": "npm-run-all -p serve watch",
"serve": "serve",
"build": "webpack",
"watch": "concurrently \"browser-sync start --server -w\" \" webpack --watch\"",
"eslint": "eslint --fix src/*.*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run eslint",
"git add"
]
},
"dependencies": {
"p5": "^1.2.0"
},
"devDependencies": {
"@types/node": "^12.0.2",
"@types/p5": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"concurrently": "^5.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"serve": "^11.3.2",
"ts-loader": "^8.0.14",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.39",
"typescript": "^3.9.7",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
}
}