-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 3.38 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
{
"name": "codelabs",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --progress --config ./webpack.config.prod.js",
"start-client": "webpack-dev-server --config ./webpack.config.dev.js --host 0.0.0.0 --public codelabs.local:9000 --content-base ./public/",
"start": "concurrently -k -p \"[{name} - {time}]\" -c \"cyan,magenta\" -n \"Client,Server\" \"yarn start-client\"",
"test": "jest --no-cache --coverage",
"test-update-snapshot": "jest --json --updateSnapshot",
"lint": "eslint ./src --ext js,jsx",
"serve-prod": "concurrently -k -p \"[{name} - {time}]\" -c \"cyan,magenta\" -n \"Client,Server\" \"serve ./public\""
},
"author": "",
"jest": {
"setupFiles": [
"<rootDir>/test/config/shims.js",
"<rootDir>/test/config/setup.js",
"<rootDir>/test/config/mocks/modules.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/config/mocks/media.js"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"compression-webpack-plugin": "^1.0.1",
"concurrently": "^3.5.0",
"css-loader": "^0.28.7",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"express": "^4.16.1",
"faker": "^4.1.0",
"file-loader": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^21.2.1",
"jsdom": "^11.2.0",
"json-server": "^0.12.0",
"less-loader": "^4.0.5",
"lodash": "^4.17.19",
"lodash-express": "^0.1.0",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.6",
"serve": "^10.1.2",
"serve-static": "^1.13.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"validator": "^9.0.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"algoliasearch": "^3.25.1",
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"highlight.js": "^9.12.0",
"markdown-to-ast": "^4.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-instantsearch": "^5.0.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"url-join": "^2.0.2",
"uuid": "^3.1.0"
}
}