-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "@mechanize/asap",
"version": "0.0.10",
"description": "React web application framework",
"bin": {
"asap": "main.js"
},
"author": "Andrey Popp <me@andreypopp.com>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@parcel/codeframe": "^2.3.1",
"@playwright/test": "^1.19.1",
"@pnpm/find-workspace-dir": "^3.0.1",
"@pnpm/find-workspace-packages": "^3.1.40",
"@pnpm/logger": "^4.0.0",
"@tinyhttp/app": "^2.0.16",
"@types/convert-source-map": "^1.5.2",
"@types/debounce": "^1.2.1",
"@types/debug": "^4.1.7",
"@types/execa": "0.9.0",
"@types/fb-watchman": "^2.0.1",
"@types/jsesc": "^3.0.1",
"@types/node": "^17.0.16",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/source-map-support": "^0.5.4",
"@vanilla-extract/esbuild-plugin": "^2.2.0",
"chalk": "^4",
"cmd-ts": "^0.10.2",
"convert-source-map": "^1.8.0",
"debounce": "^1.2.1",
"debug": "^4.3.3",
"error-stack-parser": "^2.0.7",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.8.0",
"execa": "^5",
"jsesc": "^3.0.2",
"memoize-weak": "^1.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sirv": "^2.0.2",
"source-map": "0.6.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.5.0",
"typescript": "^4.9.3",
"typescript-language-server": "^0.11.2",
"word-wrap": "^1.2.3"
},
"dependencies": {
"@recoiljs/refine": "^0.1.1",
"esbuild": "^0.14.54",
"fb-watchman": "^2.0.1",
"regexparam": "^2.0.0"
},
"files": [
"LICENSE",
"README.md",
"api.d.ts",
"api.js",
"lib/",
"main.js",
"package.json"
],
"scripts": {
"prepare": "make -s -j1 check build"
}
}