-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
129 lines (129 loc) · 3.47 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
{
"name": "@gofynd/fdk-cli",
"version": "6.2.6",
"main": "index.js",
"license": "MIT",
"bin": {
"fdk": "bin/fdk.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gofynd/fdk-cli.git"
},
"files": [
"bin",
"dist",
"src/**/*.js",
"template",
"react-template",
"react-theme-template",
"extension-section",
"extension-section-vue",
"sample-upload.js",
"sample-upload.jpeg"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.html dist/",
"watch": "tsc --watch",
"test": "jest --runInBand",
"pretty": "prettier --config ./.prettierrc --write './src/**/*.*'",
"localInstall": "sh scripts/localInstall.sh"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/configstore": "^6.0.2",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^7.3.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/mime": "^2.0.3",
"@types/require-from-string": "^1.2.3",
"@types/semver": "^7.5.8",
"@types/url-join": "^4.0.3",
"@types/validator": "^13.12.0",
"axios-mock-adapter": "^1.22.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.24.7",
"@gofynd/fp-signature": "^1.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@sentry/node": "^8.20.0",
"acorn": "^8.12.1",
"acorn-walk": "^8.3.3",
"archiver": "^7.0.1",
"axios": "0.27.2",
"axios-retry": "^4.4.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"chokidar": "^3.6.0",
"cloudflared": "^0.5.3",
"commander": "^7.2.0",
"configstore": "^5.0.1",
"cors": "^2.8.5",
"debug": "^4.3.5",
"detect-port": "^1.6.1",
"escodegen": "^2.1.0",
"execa": "^5.1.1",
"express": "^4.19.2",
"extract-zip": "^2.0.1",
"fs-extra": "^11.2.0",
"glob": "^7.2.3",
"http-proxy-middleware": "^2.0.6",
"ini": "^5.0.0",
"inquirer": "^7.3.3",
"inquirer-search-list": "^1.2.6",
"js-yaml": "^4.1.0",
"latest-version": "^5.1.0",
"leven": "^3.1.0",
"lodash": "^4.17.21",
"mime": "^2.5.2",
"mini-css-extract-plugin": "^2.9.0",
"nanoid": "^3.3.7",
"open": "^8.4.2",
"ora": "^5.4.1",
"query-string": "^7.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"react-router-dom": "^6.25.1",
"rimraf": "^3.0.2",
"semver": "^7.6.3",
"socket.io": "^2.5.1",
"source-map": "^0.7.4",
"stacktrace-parser": "^0.1.10",
"terminal-link": "^1.3.0",
"terser-webpack-plugin": "^5.3.10",
"url-join": "^4.0.1",
"uuid": "^10.0.0",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.93.0",
"webpack-dev-middleware": "^6.1.3",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^5.10.0",
"which": "^4.0.0",
"winston": "^3.13.1"
},
"engines": {
"node": ">=18"
}
}