-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "minecraft-speedrun",
"version": "1.0.0",
"description": "Speedrun-Server configuration",
"main": "start.js",
"scripts": {
"format": "prettier --write **/*",
"bundle": "webpack --config ./webpack.config.js",
"test": "jest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/NearW/minecraft-speedrun.git"
},
"keywords": [
"minecraft",
"speedrun"
],
"author": "Ben Willenbring",
"license": "ISC",
"bugs": {
"url": "https://github.com/NearW/minecraft-speedrun/issues"
},
"homepage": "https://github.com/NearW/minecraft-speedrun#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.20",
"@types/shelljs": "^0.8.8",
"babel-jest": "^26.6.3",
"husky": "^4.3.7",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.5",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.12.1",
"webpack-cli": "^4.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"rimraf": "^3.0.2",
"shelljs": "^0.8.4"
}
}