-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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": "streamer-edge-lite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"release": "standard-version",
"init": "npm install commitizen -g && npm install",
"commit": "git-cz",
"start-dev": "webpack-dev-server --mode development --config ./config/webpack.config.js",
"stylelint": "stylelint '**/*.scss'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.3.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"image-webpack-loader": "^4.6.0",
"jquery": "^3.4.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"redux": "^4.0.1",
"style-loader": "^0.23.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chalk": "^2.4.2",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"detect-port": "^1.3.0",
"eslint": "^5.10.0",
"eslint-config-react-app": "^3.0.5",
"eslint-loader": "1.6.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.1.0",
"inquirer": "^6.3.1",
"opn": "^6.0.0",
"react-dev-utils": "^9.0.0",
"standard-version": "^5.0.2",
"stylelint": "^9.10.1",
"stylelint-order": "^2.1.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}