-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.98 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "client",
"version": "0.1.1",
"private": true,
"proxy": "http://localhost:8000/",
"dependencies": {
"bootstrap": "^4.1.1",
"font-awesome": "^4.7.0",
"google-maps-react": "^2.0.2",
"humps": "^2.0.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"normalizr": "^3.2.4",
"prop-types": "^15.6.1",
"query-string": "^5.1.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-meta-tags": "^0.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.1",
"react-select": "^1.2.1",
"react-share": "^2.2.0",
"react-toastify": "^4.1.0",
"reactstrap": "^6.1.0",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0",
"validator": "^10.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc",
"initTS": "tsc --init",
"test": "react-scripts test --env=jsdom",
"lint-fix": "eslint src --fix",
"eject": "react-scripts eject",
"babel-build": "babel src/ -d lib/",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"commit": "git-cz",
"precommit": "lint-staged",
"e2e": "cypress open"
},
"lint-staged": {
"src/**/*.{js,json,css,jsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addon-storyshots": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"@types/jquery": "^3.3.22",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"commitizen": "^2.10.1",
"cypress": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.75.0",
"husky": "^0.14.3",
"jest-cli": "^21.2.1",
"jest-enzyme": "^6.0.2",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"react-test-renderer": "^16.4.1",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-logger": "^3.0.6",
"typescript": "^3.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}