-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.33 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.33 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
{
"name": "django-react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for a Django + React project",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "vite build",
"lint": "eslint ./react-app/js/ --ext .js,.jsx",
"dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labcodes/django-react-boilerplate.git"
},
"keywords": [
"django",
"react",
"vite"
],
"husky": {
"hooks": {
"pre-push": "./hooks/pre-push.sh"
}
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"jest-prop-type-error"
],
"testPathIgnorePatterns": [
"./cypress"
]
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/labcodes/django-react-boilerplate/issues"
},
"homepage": "https://github.com/labcodes/django-react-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.8.3",
"@babel/plugin-transform-react-inline-elements": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@testing-library/react": "^12.1.0",
"@types/jest": "^25.1.4",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^9.7.4",
"babel-jest": "^27.3.1",
"cypress": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^4.2.3",
"jest": "^27.3.1",
"jest-prop-type-error": "^1.1.0",
"prettier": "^2.4.1",
"sass": "^1.39.2",
"vite": "^2.5.6",
"vite-plugin-compression": "^0.3.5",
"vite-plugin-pwa": "^0.11.2"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.0",
"react-redux-api-tools": "^2.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0"
}
}