-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 827 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 827 Bytes
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
{
"name": "site-demo",
"private": true,
"engines": {
"node": "16",
"pnpm": "7"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"postinstall": "[ -z $CI ] && forge install || echo \"Skipping forge install for CI\"",
"dev": "pnpm --parallel dev",
"prettier": "pnpm --parallel --no-bail prettier",
"lint": "pnpm --parallel --no-bail lint",
"test": "pnpm --parallel --no-bail test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}