-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 855 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "forge-ui-starter-typescript-experimental",
"version": "0.0.0",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"validate": "tsc --noEmit --project ./tsconfig.json",
"lint": "./node_modules/.bin/eslint src/**/* || npm run --silent hook-errors",
"hook-errors": "echo '\\x1b[31mThe build failed because a Forge UI hook is being used incorrectly. Forge UI hooks follow the same rules as React Hooks but have their own API definitions. See the Forge documentation for details on how to use Forge UI hooks.\n' && exit 1"
},
"devDependencies": {
"@types/node": "^12.11.1",
"@types/react": "^16.9.9",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-plugin-react-hooks": "^2.1.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@forge/ui": "^0.13.1"
}
}