-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) Β· 897 Bytes
/
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
{
"name": "advent-of-code",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/cascandaliato/Advent-of-Code.git",
"author": "Carmelo Scandaliato <[email protected]>",
"license": "MIT",
"devDependencies": {
"chalk": "^4.1.0",
"concurrently": "^5.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"shelljs": "^0.8.4"
},
"dependencies": {
"axios": "^0.21.1",
"denque": "^1.4.1",
"expression-eval": "^3.1.2",
"lodash": "^4.17.20",
"mnemonist": "^0.38.1"
},
"scripts": {
"main": "nodemon -e '*'",
"solve": "node solve.js",
"pysolve": "nodemon --watch './' -e '*' --exec 'python pysolve.py'",
"pysolveprof": "nodemon --watch './' -e '*' --ignore pyprofile --exec 'python -m cProfile -o pyprofile pysolve.py'",
"test": "jest --watch"
}
}