-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
139 lines (139 loc) · 4.22 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@mouldjs/mould",
"version": "0.4.1",
"license": "Apache-2.0",
"scripts": {
"dev": "node scripts/ensure-test-workdir && cross-env WORKDIR=./test-mould next dev",
"clean": "rm -rf release",
"prebuild": "yarn clean & node scripts/ensure-test-workdir",
"build": "tsc -p tsconfig.package.json",
"postbuild": "copyfiles -e \"./node_modules/**/*\" -e \"./release/**/*\" -e \"./**/*.ts*\" -s \"./**/*\" release",
"prepublishOnly": "node scripts/prepublish-checks",
"publish-package": "yarn build && cd release && npm publish --access public"
},
"module": "index.js",
"types": "index.d.ts",
"files": [
"yarn.lock",
"tsconfig.json",
"tsconfig.package.json",
"mould.js",
"mould.d.ts",
"index.js",
"index.d.ts",
"static",
"standard",
"scripts",
"runtime",
"resources",
"lib",
"inspector",
"controls",
"components",
"compile",
"cli",
"bin",
"app",
"apollo",
".components"
],
"bin": {
"mould": "bin/mould"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"@apollo/react-common": "^3.1.4",
"@apollo/react-hooks": "^3.1.5",
"@apollo/react-ssr": "^3.1.5",
"@blueprintjs/core": "^3.25.0",
"@blueprintjs/select": "^3.13.2",
"@modulz/radix": "^0.0.1-beta.22",
"@visionjs/core": "^2.0.0-alpha.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-link-schema": "^1.2.5",
"apollo-server-express": "^2.17.0",
"apollo-server-micro": "^2.14.2",
"apollo-utilities": "^1.3.4",
"arg": "^4.1.3",
"b1ncer-react-tag-input": "^0.0.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"cross-spawn": "^7.0.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"immer": "^6.0.5",
"lodash": "^4.17.19",
"nanoid": "^2.1.2",
"next": "^9.3.2",
"node-sass": "^4.13.1",
"ramda": "^0.27.0",
"react-archer": "^1.5.0",
"react-color": "^2.18.0",
"react-dnd": "^10.0.2",
"react-dnd-cjs": "^9.4.0",
"react-dnd-html5-backend": "^10.0.2",
"react-dnd-html5-backend-cjs": "^9.4.0",
"react-feather": "^2.0.3",
"react-form": "^4.0.1",
"react-keyboard-event-handler": "^1.5.4",
"react-moveable": "^0.20.7",
"react-redux": "^7.1.1",
"react-resizable": "^1.9.0",
"react-spring": "^8.0.27",
"react-style-editor": "^0.2.2",
"react-tag-input": "^6.4.2",
"react-teleporter": "^1.1.1",
"react-treeview": "^0.4.7",
"react-use-gesture": "^7.0.15",
"reduce-reducers": "^1.0.4",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"styled-components": "^5.1.0",
"styled-system": "^5.1.2",
"typescript": "^3.8.3",
"zod": "^1.6.0",
"zustand": "^2.2.3"
},
"devDependencies": {
"@types/lodash": "^4.14.155",
"@types/node": "^12.7.8",
"@types/ramda": "^0.26.33",
"@types/react": "^16.9.4",
"@types/react-redux": "^7.1.4",
"@types/react-resizable": "^1.7.1",
"@types/react-treeview": "^0.4.2",
"@types/redux-actions": "^2.6.1",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.10",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-plugin-styled-components": "^1.10.6",
"copyfiles": "^2.3.0",
"husky": ">=1",
"lint-staged": ">=8",
"normalize.css": "^8.0.1",
"prettier": "^2.0.2",
"rc-tree": "^3.1.1",
"react": "16.10.1",
"react-dom": "16.10.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}