-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "hashcode-2020",
"version": "1.0.0",
"description": "Hashcode 2020 juhe",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/typescript/bin/tsc",
"compile:watch": "node_modules/typescript/bin/tsc -w",
"start": "node_modules/typescript/bin/tsc && node dist/main.js",
"pretty": "prettier --single-quote --trailing-comma=es5 --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orsa-scholis/hashcode-2020.git"
},
"author": "Lukas Bischof <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/orsa-scholis/hashcode-2020/issues"
},
"homepage": "https://github.com/orsa-scholis/hashcode-2020#readme",
"dependencies": {
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"colors": "^1.4.0",
"glob": "^7.1.6",
"inquirer": "^7.0.4",
"lodash": "^4.17.15"
},
"devDependencies": {
"husky": "^4.2.3",
"prettier": "1.19.1",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty"
}
}
}