-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "zoo-adventures",
"version": "1.1.0",
"description": "Hang out with the other animals in the zoo",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"scripts": {
"build": "run-s clear rollup",
"clear": "rimraf ./lib",
"lint": "eslint --ext .ts --ext .tsx .",
"rollup": "rollup -c rollup.config.ts --configPlugin typescript",
"schema": "ts-node --esm --transpileOnly ./register-schema.ts",
"serve": "serve ./demo-dist",
"typecheck": "tsc --noEmit",
"watch": "nodemon --watch './src/*' --exec 'npm run build' --ext js,ts,tsx,json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p2panda/zoo-adventures.git"
},
"contributors": [
"adz <[email protected]>",
"cafca <[email protected]>",
"sandreae <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/p2panda/zoo-adventures/issues"
},
"homepage": "https://github.com/p2panda/zoo-adventures#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/styled-components": "^5.1.30",
"@types/yargs": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.1",
"rollup-plugin-dts": "^6.1.0",
"serve": "^14.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"peerDependency": {
"react": "^18.2.0"
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"shirokuma": "^0.1.2",
"styled-components": "^6.1.1"
}
}