-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.25 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
74
75
76
77
78
79
80
81
{
"name": "baobab-test",
"version": "0.0.0",
"description": "Test react application with Baobab",
"main": "index.js",
"repository": "git@github.com:velther/react-sample-app.git",
"engines": {
"node": ">=9.5.0"
},
"scripts": {
"start": "nodemon ./entry.js",
"build": "NODE_ENV=production webpack",
"build:debug": "NODE_ENV=production ANALYZE=true webpack --progress --colors --display-chunks --display-reasons --display-error-details",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"browserlist": [
"last 2 versions"
],
"author": "Boris Mudruk",
"license": "ISC",
"dependencies": {
"classnames": "2.2.6",
"koa": "2.5.2",
"koa-favicon": "2.0.1",
"koa-static": "5.0.0",
"serve-favicon": "2.5.0"
},
"devDependencies": {
"assets-webpack-plugin": "3.9.5",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-loader": "7.1.5",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"baobab": "2.6.1",
"core-js": "2.5.7",
"css-loader": "6.8.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"extract-text-webpack-plugin": "3.0.2",
"fbjs": "3.0.5",
"husky": "0.14.3",
"lint-staged": "7.2.2",
"mini-css-extract-plugin": "0.4.1",
"nodemon": "3.0.1",
"prop-types": "15.6.2",
"querystring": "0.2.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-hot-loader": "4.3.4",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.3.1",
"react-transition-group": "2.4.0",
"regenerator-runtime": "0.12.1",
"style-loader": "0.22.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"webpack": "4.16.5",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.8.0"
}
}