-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
80 lines (80 loc) · 2.7 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "assignments",
"version": "1.1.0",
"description": "> If you are following the HackYourFuture curriculum we recommend you to start with module 1: [HTML/CSS/GIT](https://github.com/HackYourFuture/HTML-CSS). To get a complete overview of the HackYourFuture curriculum first, click [here](https://github.com/HackYourFuture/curriculum).",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./.dist/test-runner/exercise-runner",
"test": "node ./.dist/test-runner/test-cli",
"test:runner": "glob -c \"node --test\" \"./.dist/__tests__/**/*.test.js\"",
"jest:js2": "jest ./.dist/1-JavaScript/Week2",
"jest:js3": "jest ./1-JavaScript/Week3",
"jest:br1": "jest ./.dist/2-Browser/Week1",
"jest:api1": "jest ./.dist/3-UsingAPIs/Week1",
"jest:api2": "jest ./.dist/3-UsingAPIs/Week2",
"clean": "node ./.dist/test-runner/clean",
"create-hashes": "node ./.dist/test-runner/create-hashes.js",
"test-changed": "node ./.dist/test-runner/test-changed",
"postinstall": "tsc --build",
"prepare": "husky",
"pre-commit": "node .dist/test-runner/pre-commit",
"pre-push": "node .dist/test-runner/pre-push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackYourFuture/Assignments.git"
},
"keywords": [
"assignments",
"HackYourFuture"
],
"author": "Jim Cramer for HackYourFuture",
"engines": {
"node": ">=20"
},
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/HackYourFuture/Assignments/issues"
},
"homepage": "https://github.com/HackYourFuture/Assignments#readme",
"alias": {
"pokerDiceRoller": "./3-UsingAPIs/Week1/assignment"
},
"WARNING": "Do not update major versions of dependencies as they may break the test runner",
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.9.0",
"@html-validate/stylish": "^4.2.0",
"@inquirer/prompts": "^5.3.8",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/serve-handler": "^6.1.4",
"acorn": "^8.12.1",
"acorn-walk": "^8.3.3",
"ascii-table3": "^0.9.0",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"cspell": "^8.13.2",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"eslint-plugin-no-autofix": "^2.0.0",
"fast-glob": "^3.3.2",
"glob": "^11.0.0",
"globals": "^15.9.0",
"html-validate": "^8.21.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdom": "^24.1.1",
"moment": "^2.30.1",
"open": "^10.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"serve-handler": "^6.1.5",
"strip-ansi": "^7.1.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.1"
}
}