-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
38 lines (38 loc) · 887 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
31
32
33
34
35
36
37
38
{
"name": "tdd-mooc-tetris",
"version": "1.0.0-SNAPSHOT",
"description": "Exercise for learning Test-Driven Development",
"homepage": "https://github.com/luontola/tdd-mooc-tetris",
"author": {
"name": "Esko Luontola",
"url": "https://www.luontola.fi"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/luontola/tdd-mooc-tetris.git"
},
"private": true,
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.10",
"http-server": "^14.1.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"start": "http-server src -o / -c-1",
"test": "vitest run",
"autotest": "vitest watch",
"format": "prettier --write .",
"lint": "tsc"
}
}