forked from nvincenthill/fullstacktemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 KB
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
{
"name": "fullstackreacttemplate",
"version": "1.0.0",
"description": "fullstackreacttemplate",
"author": "Nicholas Vincent-Hill",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon server/index.js",
"react-dev": "webpack -d --watch",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testMatch": [
"**/client/src/components/**/*.test.{js,jsx}",
"**/__tests__/*.{js}"
],
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jest-enzyme"
],
"testURL": "http://localhost",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"mongoose": "^5.4.22",
"npm": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-fontawesome": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-export-extensions": "^6.22.0",
"css-loader": "^1.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"jest-enzyme": "^7.0.2",
"prettier": "1.16.4",
"sinon": "^7.3.1",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}