forked from mwakerman/kanbanist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "kanban.ist",
"version": "1.0.0",
"devDependencies": {
"cross-env": "5.2.0",
"node-sass": "^4.13.1",
"react-scripts": "3.4.1",
"sass": "^1.25.0",
"typescript": "^3.8.2"
},
"dependencies": {
"@blueprintjs/core": "^3.0.0",
"@blueprintjs/datetime": "^3.0.0",
"@blueprintjs/icons": "^3.13.0",
"@blueprintjs/select": "^3.0.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.6.1",
"core-js": "^3.2.1",
"fibers": "^4.0.2",
"history": "^4.10.1",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"lodash": "^4.17.15",
"markdown": "^0.5.0",
"minimist": "^1.2.3",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"querystringify": "^2.1.1",
"raven-js": "^3.21.0",
"react": "^16.0.0",
"react-beautiful-dnd": "^12.2.0",
"react-dom": "^16.0.0",
"react-ga": "^2.3.5",
"react-redux": "7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"redux": "^3.6.0",
"redux-localstorage-simple": "^1.2.0",
"redux-logger": "^2.8.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.4",
"url-search-params": "^0.10.0"
},
"scripts": {
"start": "cross-env REACT_APP_VERSION=$npm_package_version react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"format": "prettier --config .prettierrc --write src/**/*.js",
"eject": "react-scripts eject",
"deploy": "yarn && REACT_APP_VERSION=\"$(git rev-parse --short HEAD)\" yarn build && cp netlify/* build/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}