-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.5 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
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
107
108
109
110
111
112
113
{
"name": "subdl-client-web",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"flow": "flow",
"clean": "rm -rf dist && mkdir dist",
"serve": "",
"dev": "webpack-dev-server --progress --profile --colors --host 0.0.0.0",
"start": "node ./dist/server",
"build": "yarn run clean && webpack --env.production --progress --profile --colors",
"build:watch": "yarn run build -- -w",
"test": "jest",
"test:watch": "yarn test -- --watch",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,__{tests,mocks}__}/!(components|containers)/*.js\"",
"prettier:all": "prettier --single-quote --trailing-comma es5 --write",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"{src,__{tests,mocks}__}/!(components|containers)/*.js": [
"prettier:all",
"test",
"git add"
]
},
"jest": {
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest"
}
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-links": "^3.2.6",
"@storybook/react": "^3.2.8",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.4.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.0",
"danger": "^0.15.0",
"empty": "^0.10.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"file-loader": "^0.11.1",
"flow-bin": "^0.53.1",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"image-webpack-loader": "^3.3.1",
"jest": "^20.0.4",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^4.0.3",
"lodash-webpack-plugin": "^0.11.2",
"prettier": "^1.5.3",
"pug": "^2.0.0-beta11",
"pug-loader": "^2.3.0",
"react-hot-loader": "next",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.18.0"
},
"dependencies": {
"apollo-client": "^1.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chalk": "^2.1.0",
"css-color-function": "^1.3.0",
"downshift": "^1.3.0",
"grade-js": "^1.0.10",
"graphql-tag": "^2.4.2",
"lodash": "^4.17.4",
"normalize.css": "^6.0.0",
"polished": "^1.7.0",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"prop-types": "^15.5.10",
"qs": "^6.5.0",
"react": "^15.5.4",
"react-apollo": "^1.4.14",
"react-custom-scrollbars": "^4.1.1",
"react-dom": "^15.5.4",
"react-overdrive": "^0.0.5",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.0",
"recompose": "^0.25.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-saga": "^0.15.0",
"reselect": "^3.0.0",
"styled-components": "^2.1.1",
"styled-media-query": "^2.0.1",
"uuid": "^3.0.1"
}
}