This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.68 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
{
"scripts": {
"build": "webpack -p",
"build:dev": "webpack -d",
"dev": "NODE_ENV=server nodemon server.js",
"format": "prettier --write --single-quote --print-width=120 --parser=flow --tab-width=2 \"js/**/*.{js,jsx}\"",
"lint": "eslint **/*.{js,jsx} --quiet",
"start": "NODE_ENV=server node server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest -u",
"watch": "webpack --watch"
},
"dependencies": {
"axios": "^0.17.0",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-register": "^6.26.0",
"compression": "^1.7.1",
"cors": "^2.8.4",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.1",
"express": "^4.16.2",
"lodash": "^4.17.4",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"prop-types": "^15.6.0",
"react": "16",
"react-addons-perf": "^15.4.2",
"react-dom": "16",
"react-dom-stream": "^0.5.1",
"react-hot-loader": "next",
"react-hydrate": "^0.9.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.0",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./js/__test__/setupTests.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^1.9.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.56.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"prettier": "^1.7.2",
"react-test-renderer": "16",
"webpack-dev-server": "^2.9.1"
},
"name": "bookclub-web-app",
"version": "3.0.0",
"description": "A Book Club Web App",
"main": "app.js",
"repository": "",
"author": "Brian McLaren <[email protected]>",
"license": "MIT",
"engines": {
"node": "8.7.0",
"npm": "5.5.1"
}
}