-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.43 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": "react-github-bookmark",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"test": "jest",
"development": "webpack-dev-server --env=development",
"production": "webpack --env=production",
"test:watch": "jest --watch",
"flow:start": "flow start",
"flo:stop": "flow stop",
"flow:status": "flow status",
"flow:coverage": "flow coverage"
},
"lint-staged": {},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"immutable": "^3.8.2",
"polished": "^1.9.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-dropzone": "^4.2.9",
"redux": "^4.0.0",
"redux-actions": "^2.3.0",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"styled-components": "^3.2.6",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.13.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-flow": "^1.0.1",
"eslint-config-standard-react": "5.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.71.0",
"html-webpack-plugin": "^3.2.0",
"jest": "19.0.2",
"raw-loader": "^0.5.1",
"react-redux": "^5.0.7",
"standard": "10.0.2",
"standard-flow": "^1.0.0",
"standard-react": "^4.0.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
}
}