forked from Nargonath/cra-build-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
{
"name": "cra-build-watch",
"version": "0.0.0-development",
"description": "A script for create-react-app that writes development builds to the disk",
"main": "scripts/index.js",
"bin": "bin/cra-build-watch.js",
"files": ["bin", "scripts", "utils"],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "jest",
"cm": "git-cz",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"{{bin,scripts,utils}/**/*.{js,json},*.{js,json}}": ["prettier --write", "git add"]
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/Nargonath/cra-build-watch.git"
},
"bugs": {
"url": "https://github.com/Nargonath/cra-build-watch/issues"
},
"homepage": "https://github.com/Nargonath/cra-build-watch#readme",
"author": "Nargonath <[email protected]>",
"keywords": [
"create-react-app",
"react",
"webpack",
"development-environment",
"build",
"reactjs"
],
"license": "MIT",
"peerDependencies": {
"react-scripts": ">= 1.0.x"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@dixeed/eslint-config": "2.0.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"husky": "0.14.3",
"jest": "22.4.3",
"lint-staged": "7.0.4",
"prettier": "1.12.1",
"travis-deploy-once": "^4.4.1"
},
"dependencies": {
"cross-spawn": "6.0.5",
"fs-extra": "5.0.0",
"html-webpack-plugin": "^3.2.0",
"import-cwd": "2.1.0",
"meow": "4.0.0",
"ora": "2.0.0",
"semver": "^5.6.0"
}
}