-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 2.02 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
{
"name": "semver-check",
"description": "A dummy webapp to check your semver compat",
"version": "0.1.0",
"private": true,
"homepage": ".",
"repository": {
"type": "git",
"url": "https://github.com/jubianchi/semver-check"
},
"license": "MIT",
"dependencies": {
"bootstrap": "^4.1.3",
"connected-react-router": "^6.0.0",
"history": "^4.7.2",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-clipboard.js": "^2.0.2",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.13.1",
"react-ga": "^2.5.3",
"react-octicon": "^3.0.1",
"react-redux": "^7.2.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"semver": "^7.3.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.34",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.5.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prettier": "^2.0.5",
"react-scripts": "3.4.1"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"cs": "prettier --ignore-path .gitignore --write './**/*.{js,jsx,json,css,scss,sass,md,yml}' '!./**/package.json' '!./**/yarn.json'"
},
"prettier": {
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}