-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.05 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
{
"name": "create-react-storefront",
"version": "8.1.2",
"description": "A CLI for creating React Storefront apps.",
"main": "index.js",
"dependencies": {
"chalk": "^2.4.2",
"decompress": "^4.2.1",
"download": "^7.1.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.11",
"ora": "^3.4.0",
"prompts": "^1.1.0",
"url-exists": "^1.0.3",
"yargs": "^12.0.2"
},
"repository": {
"type": "git"
},
"keywords": [
"react-storefront"
],
"author": "Moovweb",
"license": "Apache-2.0",
"preferGlobal": true,
"bin": {
"create-react-storefront": "./index.js"
},
"scripts": {
"start": "node .",
"release": "yarn publish",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.js\" \"!{node_modules,.next,.yalc}/**\""
},
"devDependencies": {
"husky": "^4.0.10",
"lint-staged": "^10.0.0",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add ."
]
}
}