-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.64 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
{
"name": "google-hashcode",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"currentExercise": "2020-books",
"scripts": {
"watch": "concurrently -k -n \"Typescript\" -p \"[{name}]\" -c \"blue\" \"tsc --watch\" ",
"win:watch": "npm run watch",
"graph:watch": "nodemon --watch src/competitions/$npm_package_currentExercise/output -e out dist/hashcode-tooling/graph/solution-graph.js $npm_package_currentExercise",
"win:graph:watch": "nodemon --watch src/competitions/%npm_package_currentExercise%/output -e out dist/hashcode-tooling/graph/solution-graph.js %npm_package_currentExercise%",
"graph:serve": "http-server ./src/hashcode-tooling/graph",
"win:graph:serve": "npm run graph:serve",
"go": "node dist/index.js -c $npm_package_currentExercise",
"win:go": "node dist/competitions/%npm_package_currentExercise%/src/index.js",
"go:profile": "node --inspect-brk dist/competitions/$npm_package_currentExercise/src/index.js",
"win:go:profile": "node --inspect-brk dist/competitions/%npm_package_currentExercise%/src/index.js",
"prettier": "prettier --write \"./src/**/*.ts\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/node": "^13.5.2",
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/mathjs": "^6.0.4",
"command-line-args": "^5.1.1",
"cross-var": "^1.1.0",
"lodash": "^4.17.15",
"mathjs": "^6.6.0",
"serialize-javascript": "^2.1.2",
"typescript-collections": "^1.3.3"
}
}