-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.93 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
{
"name": "stapler",
"description": "Stapler: an amazing CLI tool that scaffolds an entire fullstack app for you",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "changeset publish",
"test": "vitest",
"test:core": "vitest packages/core",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^22.5.4",
"@vitest/ui": "^2.1.5",
"memfs": "^4.14.0",
"prettier": "^3.2.5",
"turbo": "^2.1.1",
"typescript": "^5.4.5",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"engines": {
"node": ">=18"
},
"main": "index.js",
"dependencies": {
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-module-utils": "^2.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-playwright": "^0.16.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.2",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-turbo": "^2.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-scope": "^7.2.2",
"eslint-visitor-keys": "^3.4.3",
"gradient-string": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.6"
},
"keywords": [],
"author": "",
"license": "ISC"
}