forked from nickytonline/connect-four
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "connect-four",
"version": "1.0.0",
"description": "A web based version of the classic game Connect Four",
"type": "module",
"scripts": {
"prebuild": "npm run lint && CI=true npm test -- run --coverage",
"build": "vite build",
"dev": "vite dev",
"preview": "vite preview",
"test:e2e": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickytonline/connect-four.git"
},
"keywords": [
"typescript",
"svelte"
],
"author": "Nick Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickytonline/connect-four/issues"
},
"homepage": "https://github.com/nickytonline/connect-four#readme",
"engines": {
"node": ">=16.17.1"
},
"devDependencies": {
"@playwright/test": "^1.25.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.1",
"svelte": "^3.49.0",
"svelte-check": "^2.9.1",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.1.4",
"vitest": "^0.23.4"
}
}