-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "algorithms",
"version": "1.0.0",
"description": "Domain-Driven Design Boot Camp",
"main": "src/main/application/application.js",
"engines": {
"node": ">=14"
},
"scripts": {
"run": "nodemon --exec npm run start",
"start-anagrams": "ts-node exercises/anagrams/anagrams.ts",
"start-min-max": "ts-node exercises/min-max/min-max.ts",
"start-jesse-and-cookies": "ts-node exercises/jesse-and-cookies/jesse-and-cookies-main.ts",
"clean": "node ./clean.js",
"unit-test": "nodemon --ext ts --exec npm run _unit-test",
"_unit-test": "npm run clean && jest || exit 0"
},
"keywords": [
"Domain-Driven"
],
"author": "mdepasquale21",
"license": "ISC",
"dependencies": {
"@types/prompt-sync": "^4.1.1",
"moment": "^2.27.0",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.21",
"del": "^6.0.0",
"jest": "^28.0.3",
"nodemon": "^2.0.15",
"ts-jest": "^28.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"nodemonConfig": {
"ignore": [],
"ext": "ts"
}
}