-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "react-cli-utility",
"version": "1.2.4",
"description": "A command line utility for react application development",
"main": "build/bin/index.js",
"scripts": {
"build": "webpack --mode=production",
"start": "tsc && node build/bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"rct": "./build/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvg2416/react-cli.git"
},
"keywords": [
"cmd",
"react",
"cli-tool"
],
"author": "Harsh Vardhan Gautam",
"license": "MIT",
"bugs": {
"url": "https://github.com/hvg2416/react-cli/issues"
},
"homepage": "https://github.com/hvg2416/react-cli#readme",
"devDependencies": {
"@types/node": "^22.14.1",
"@types/yargs": "^17.0.33",
"tslint": "^5.20.1",
"typescript": "^5.8.3",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"chalk": "^5.4.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"yargs": "^17.7.2"
}
}