-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "js-tools",
"version": "1.1.0",
"description": "Describe js-tools here",
"private": true,
"scripts": {
"build": "nwb build-react-app",
"clean": "nwb clean-app",
"start": "nwb serve-react-app",
"test": "npm run lint && nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"prettier":
"prettier --write '*.{js,prettierrc,json}' '{src,stories,tests}/**/*.js'",
"precommit": "lint-staged && npm test",
"prepush": "npm test",
"lint": "eslint src/**/*.js && stylelint src/**/*.scss",
"commitmsg": "commitlint -e $GIT_PARAMS",
"cz": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"doc": "esdoc",
"storybook": "start-storybook -p 9001 -c .storybook",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"make:try": "unleash --patch --dry-run",
"make:patch": "unleash -p --no-publish",
"make:minor": "unleash -m --no-publish",
"make:major": "unleash -M --no-publish",
"make:prerelease": "unleash -P --no-publish"
},
"lint-staged": {
"*.{js}": ["prettier --write", "eslint", "git add"],
"*.{prettierrc,json}": ["prettier --write", "git add"],
"*.scss": ["stylelint", "git add"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"react": "16.3.0",
"react-dom": "16.3.0"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@storybook/react": "3.4.0",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"commitizen": "2.9.6",
"conventional-changelog-cli": "1.3.21",
"cz-conventional-changelog": "2.1.0",
"esdoc": "1.0.4",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-jsx-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "4.19.1",
"eslint-plugin-react": "7.7.0",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"nwb": "0.21.x",
"nwb-sass": "0.8.4",
"prettier": "1.11.1",
"react-styleguidist": "6.2.7",
"stylelint": "9.1.3",
"stylelint-scss": "2.5.0"
},
"author": "",
"license": "MIT",
"repository": ""
}