generated from jonty-terrence/react-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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": "portfolio-website",
"version": "1.0.0",
"description": "A place to showcase my work as a web developer",
"main": "index.js",
"author": "Jonty Buchan",
"license": "MIT",
"scripts": {
"lint": "npx eslint . --ext .js,.jsx --ignore-path .eslintignore",
"dev:build": "webpack --config webpack.config.js",
"start": "node server",
"test": "jest --verbose --noStackTrace",
"e2e": "cypress run",
"test:watch": "npm test -- --watchAll",
"dev": "run-p dev:server dev:client",
"dev:server": "nodemon server",
"dev:client": "webpack --config webpack.config.js --watch"
},
"engines": {
"node": "12.x"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-regenerator",
"@babel/plugin-transform-runtime"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/cypress/"
],
"setupFiles": [
"<rootDir>/client/testing/setup.js"
]
},
"dependencies": {
"express": "^4.17.1",
"react-pdf": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.1",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.5",
"@testing-library/user-event": "^12.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"cypress": "^5.2.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.1.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}