forked from LekoArts/portfolio-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 2.05 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
{
"name": "portfolio-v2",
"description": "Home of lekoarts.de",
"version": "1.0.0",
"private": true,
"author": "LekoArts <[email protected]>",
"license": "GPLv3",
"workspaces": [
"packages/*",
"www"
],
"scripts": {
"develop": "yarn workspace www develop",
"clean": "yarn workspace www clean",
"build": "yarn workspace www build",
"serve": "yarn workspace www serve",
"tsc": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"new-post": "./scripts/target/release/post",
"new-garden": "./scripts/target/release/garden",
"prepare": "husky install",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --runInBand",
"spellcheck": "cspell lint www/content/**/**/*.mdx --show-suggestions",
"rs:build": "cd scripts && cargo build --release"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"babel-preset-gatsby": "^2.7.0",
"cspell": "^5.18.5",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]"
}