-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 977 Bytes
/
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
{
"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/api": "^0.4.2",
"@forge/ui": "^0.3.1",
"@forge/ui-confluence": "^0.3.0",
"node-fetch": "^2.6.0",
"unsplash-js": "^6.0.0"
}
}