-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.71 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
{
"name": "wouldyourather.co.uk",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "razzle start",
"build": "razzle build",
"api": "nodemon ./api/app.js",
"test": "jest test --env=jsdom --colors",
"report": "jest test --env=jsdom --colors --coverage",
"test:watch": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"lint-scripts": "eslint './{src/**,test/**,config/**,.}/*.js'",
"lint-styles": "stylelint './src/**/*.css'",
"lint": "npm run lint-scripts && npm run lint-styles",
"postversion": "git push && git push --tags && npm publish",
"preversion": "npm run lint && npm run test && npm run build",
"precommit": "lint-staged",
"commit": "npx git-cz",
"prepush": "npm run test"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/hutber/wouldyourather/issues"
},
"homepage": "https://www.wouldyourather.co.uk",
"dependencies": {
"@babel/preset-env": "^7.1.6",
"@material-ui/core": "^3.6.1",
"@material-ui/icons": "^3.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"body-parser": "^1.18.3",
"boom": "^7.2.2",
"cors": "^2.8.4",
"enzyme-adapter-react-16": "^1.7.1",
"errorhandler": "^1.5.0",
"express": "4.16.4",
"express-boom": "^2.0.0",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"history": "^4.7.2",
"jsonwebtoken": "^8.2.2",
"mongoose": "^5.1.3",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.0.4",
"react-router-dom": "^4.3.1",
"react-router-scroll-top": "^0.1.1",
"react-test-renderer": "^16.7.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"connected-react-router": "^4.3.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-to-json": "^3.3.5",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"razzle": "3.0.0-alpha.0",
"serialize-javascript": "^1.5.0",
"stylelint": "^9.8.0",
"stylelint-config-standard": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"jest": {
"setupFiles": ["<rootDir>src/setupTests.js"]
}
}