-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "flow-react-cli",
"version": "1.1.1",
"description": "Create React app & boilerplate",
"bin": {
"flow": "dist/bin/main.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"watch": "tsc -w",
"dev": "node ./dist/bin/main.js init",
"build": "shx rm -rf dist/ && npm run tsc",
"deploy": "npm run build && npm publish"
},
"author": "Jay-flow",
"license": "MIT",
"keywords": [
"react",
"next",
"cli",
"template",
"boilerplate",
"typescript",
"eslint",
"prettier"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.1.0",
"inquirer": "^8.0.0",
"ora": "^5.3.0",
"select-shell": "^1.1.3",
"shelljs": "^0.8.4",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.33",
"@types/shelljs": "^0.8.8",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"shx": "^0.3.3",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jay-flow/flow-react-cli.git"
}
}