-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 757 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 757 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
29
30
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest --config .jestrc.json",
"lint": "eslint packages/react-div-100vh/src",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"build": "yarn workspace test-app build",
"prebuild": "yarn workspace react-div-100vh build",
"serve": "yarn workspace test-app serve"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^7",
"eslint-plugin-react": "^7",
"jest": "^26",
"prettier": "^2",
"ts-jest": "^26",
"ts-node": "^9",
"typescript": "^4"
},
"resolutions": {
"node-forge": "0.10.0",
"is-svg": "4.2.2"
}
}