-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "spatools",
"description": "A collection of tools for building single page applications.",
"private": true,
"type": "commonjs",
"author": {
"name": "Ryan Howard",
"email": "rollercodester@live.com",
"url": "https://rollercodester.github.io/resume"
},
"homepage": "https://rollercodester.github.io/spa-tools/",
"repository": {
"type": "git",
"url": "https://github.com/rollercodester/spa-tools"
},
"license": "MIT",
"version": "1.0.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish:one:next:dryrun": "pnpm publish --tag next --access public --dry-run --filter",
"publish:one:next": "pnpm publish --tag next --access public --filter",
"publish:one:ga:dryrun": "pnpm publish --access public --dry-run --filter",
"publish:one:ga": "pnpm publish --access public --filter",
"test:dev": "turbo test:dev",
"test:cicd": "turbo test:cicd"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^17.0.12",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"eslint-config-spatools": "workspace:*",
"jsdom": "^23.0.1",
"prettier": "latest",
"prettier-config-spatools": "workspace:*",
"react": "^18.2.0",
"tsup": "^8.0.1",
"turbo": "latest",
"typescript": "^5.2.2",
"typescript-config-spatools": "workspace:*",
"vitest": "^1.0.4"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18"
}
}