-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.39 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
{
"name": "@ts-defold/create",
"version": "0.1.16",
"description": "@ts-defold scaffolding and cli utility",
"main": "lib/index.js",
"bin": "bin/create.js",
"files": [
"lib/**/*.{js,d.ts}",
"bin/**/*.js"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run bundle",
"bundle": "rollup -c",
"dev": "npm run bundle && DEV=true node ./bin/create.js",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-defold/create.git"
},
"keywords": [
"typescript",
"lua",
"defold"
],
"author": "Justin Walsh (@thejustinwalsh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-defold/create/issues"
},
"homepage": "https://github.com/ts-defold/create#readme",
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/cross-spawn": "^6.0.2",
"@types/ink": "^2.0.3",
"@types/ink-big-text": "^1.2.1",
"@types/ink-gradient": "^2.0.1",
"@types/jest": "^26.0.14",
"@types/marked-terminal": "^3.1.2",
"@types/node": "^13.7.7",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.17",
"@types/react-router": "^5.1.16",
"@types/rimraf": "^3.0.1",
"@types/semver": "^7.3.8",
"@types/tmp": "^0.2.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"esbuild": "^0.13.13",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.5.3",
"prettier": "^2.3.2",
"rollup": "^2.60.0",
"rollup-plugin-esbuild": "^4.6.0",
"ts-jest": "^26.4.1",
"typescript": "^4.3.5"
},
"dependencies": {
"adm-zip": "^0.5.5",
"cross-spawn": "^7.0.3",
"final-form": "^4.20.2",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-markdown": "^1.0.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "git+https://[email protected]/thejustinwalsh/ink-text-input#54f082fda67ed54e9d608c8e643d12948d36b8d5",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-final-form": "^6.5.3",
"react-router": "^5.2.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"simple-git": "^3.2.6",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.2",
"yargs": "^17.1.0"
},
"overrides": {
"react": "^17.0.2"
}
}