-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.91 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
{
"name": "make-magic-app",
"version": "5.1.3",
"description": "A tool for quickly scaffolding an app with Magic authentication baked-in!",
"repository": "magiclabs/make-magic-app",
"license": "MIT",
"author": "Magic Labs <[email protected]>",
"main": "./dist/core/lib.js",
"bin": "./bin.js",
"files": [
"bin.js",
"dist"
],
"scripts": {
"template-dev": "node scripts/template_dev/ejs_dev_script.js",
"dev": "yarn clean && tsc-watch --onSuccess \"yarn build-dev\"",
"build-dev": "yarn clean && tsc && tsc-alias && copyfiles \"compiled/*/+(LICENSE|package.json)\" dist",
"build": "yarn clean && tsc && tsc-alias && copyfiles \"compiled/*/+(LICENSE|package.json)\" dist && ./scripts/minify.ts",
"clean": "rimraf dist",
"lint": "eslint --fix --ext .ts,.tsx .",
"test": "echo \"No unit tests... yet :(\" && exit 0",
"postinstall": "husky && ./scripts/ncc.ts",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@types/bytes": "^3.1.0",
"@types/ejs": "^3.0.5",
"@types/fs-extra": "^11.0.2",
"@types/node": "^14.14.12",
"@types/parse-package-name": "^0.1.0",
"@types/pretty-time": "^1.1.3",
"@types/react": "^17.0.0",
"@types/react-is": "^17.0.0",
"@types/tar": "^4.0.4",
"@types/watch": "^1.0.6",
"@types/yargs-parser": "^20.2.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vercel/ncc": "^0.38.1",
"auto": "^11.2.0",
"bytes": "^3.1.0",
"chalk": "^4.1.2",
"copyfiles": "^2.4.1",
"decamelize": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^5.1.1",
"got": "^11.8.3",
"husky": "^9.1.4",
"json-stringify-pretty-compact": "^3.0.0",
"json5": "^2.2.3",
"lint-staged": "^15.2.9",
"parse-package-name": "^0.1.0",
"pinst": "^3.0.0",
"prettier": "^3.2.4",
"react": "^17.0.1",
"react-is": "^17.0.1",
"rimraf": "^6.0.1",
"tar": "^6.2.1",
"terser": "^5.6.0-beta",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsc-watch": "^6.2.0",
"typescript": "^5.5.4",
"watch": "^1.0.2",
"wrap-ansi": "^7.0.0",
"yargs-parser": "^21.1.1"
},
"auto": {
"plugins": [
"npm"
]
},
"dependencies": {
"@segment/analytics-node": "^1.1.0",
"binaryextensions": "^4.18.0",
"ejs": "^3.1.10",
"enquirer": "^2.4.1",
"fs-extra": "^11.2.0",
"ora": "^5.4.1",
"pretty-time": "^1.1.0",
"textextensions": "^6.11.0"
},
"resolutions": {
"ejs": "^3.1.10",
"tar": "^6.2.1",
"braces": "^3.0.3",
"merge": "^2.1.1"
}
}