-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "todo",
"version": "0.0.1",
"description": "A prototype for use as a boilerplate to get started with webpack, react and graphql",
"main": "client/src/js/boot/index.js",
"scripts": {
"build": "yarn && cross-env NODE_ENV=production webpack -p --progress",
"watch": "yarn && cross-env NODE_ENV=development webpack --progress --watch",
"test": "jest",
"lint": "eslint webpack.config.js client/src/js"
},
"keywords": [
"todo",
"hello world",
"graphql",
"silverstripe",
"react"
],
"author": "Christopher Joe <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-client": "^1.2.2",
"es6-promise": "^4.0.5",
"graphql-tag": "^2.0.0",
"history": "^4.6.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.8",
"querystring": "^0.2.0",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-document-title": "^2.0.2",
"react-dom": "^15.5.4",
"react-redux": "^4.4.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.14.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.14.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.2",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"jest-cli": "^19.0.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"react-addons-test-utils": "^15.3.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.13.1",
"webpack": "^2.4.1"
},
"browserslist": "> 1%",
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"server",
"client"
],
"testDirectoryName": "tests",
"mocksPattern": "mocks",
"automock": true,
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"bail": true
}
}