-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "example-ts-express-react",
"version": "0.0.1",
"private": true,
"dependencies": {
"@easybread/adapter-bamboo-hr": "^0.0.3",
"@easybread/adapter-google-contacts": "^0.0.3",
"@easybread/adapter-gsuite-admin": "^0.0.3",
"@easybread/common": "^0.0.3",
"@easybread/core": "^0.0.3",
"@easybread/google-common": "^0.0.3",
"@easybread/operations": "^0.0.3",
"@easybread/schemas": "^0.0.3",
"@reduxjs/toolkit": "^1.3.4",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.1.0",
"@types/jest": "^24.0.0",
"@types/node": "^13.13.4",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-icons": "^3.0.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^5.0.1",
"@types/webpack-env": "^1.15.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.9.0",
"react-image": "^2.4.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"styled-components": "^5.1.0",
"styled-reset": "^4.1.2",
"ts-node": "^8.8.2"
},
"scripts": {
"start": "PORT=8080 react-scripts start",
"start:server": "ts-node --project ./tsconfig.server.json ./src/server.ts",
"start:server:cra": "PORT=8080 CRA_DEV_SERVER_MODE=true ts-node --project ./tsconfig.server.json ./src/server.ts",
"build": "CI=false react-scripts build",
"check-types": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"lint:ci": "CI=false yarn lint --quiet --format junit -o reports/junit/js-lint-results.xml",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"test": "jest --passWithNoTests",
"test:cov": "jest --coverage --passWithNoTests",
"test:ci": "CI=false jest --ci --passWithNoTests --coverage --bail --reporters=default --reporters=jest-junit",
"test:watch": "jest --coverage --passWithNoTests --watchAll",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:3000",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-simple-import-sort": "^5.0.2",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}