This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "create-grandstack-app",
"version": "0.4.5",
"description": "Create a new GRANDstack application",
"bin": "./dist/create-grandstack-app.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && babel src --out-dir dist",
"build:watch": "nodemon --ignore dist --exec 'yarn build'",
"lint": "eslint --ext .js src --color",
"format": "prettier --write src/**/*.js",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "William Lyon",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.2",
"arg": "^4.1.3",
"axios": "^0.19.2",
"babel-plugin-auto-import": "^1.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"chalk": "^4.1.0",
"check-node-version": "^4.0.3",
"decompress": "^4.2.1",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"rimraf": "^3.0.2",
"tmp": "^0.1.0",
"util": "^0.12.3"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0"
}
}