generated from garronej/ts-ci
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.14 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
{
"name": "powerhooks",
"version": "1.0.20",
"description": "Some generic React hooks",
"repository": {
"type": "git",
"url": "git://github.com/garronej/powerhooks.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"yarn_link": "ts-node src/bin/yarn_link.ts",
"start_spa": "yarn yarn_link && cd src/test/spa && yarn start",
"start_ssr": "yarn yarn_link && cd src/test/ssr && yarn dev",
"test": "node dist/test/unit/main"
},
"author": "u/garronej & u/thieryw",
"license": "MIT",
"files": [
"src/",
"!src/test/",
"!src/bin/",
"dist/",
"!dist/test/",
"!dist/bin/",
"!dist/package.json",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"react",
"hooks"
],
"homepage": "https://github.com/garronej/powerhooks",
"devDependencies": {
"@types/memoizee": "0.4.7",
"@types/node": "16.11.22",
"@types/react": "18.0.9",
"next": "12.1.7-canary.4",
"react": "18.1.0",
"react-dom": "18.1.0",
"typescript": "^4.6.4"
},
"dependencies": {
"evt": "^2.5.9",
"memoizee": "^0.4.17",
"tsafe": "^1.8.5"
}
}