-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
100 lines (100 loc) · 2.85 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
{
"name": "dsccodecollab.github.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"@lottiefiles/react-lottie-player": "^2.2.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-swipeable": "^5.2.0",
"@types/react-swipeable-views": "^0.13.0",
"@types/react-toastify": "^4.1.0",
"axios": "^0.21.0",
"emailjs-com": "^2.6.4",
"firebase": "^7.22.0",
"html-react-parser": "^1.0.0",
"js-cookie": "^2.2.1",
"moment": "^2.29.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^4.1.0",
"react-particles-js": "^3.4.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-swipeable": "^6.0.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"swiper": "^6.3.5",
"views": "^1.0.2"
},
"scripts": {
"build:tailwind": "postcss src/tailwind.css -o src/tailwind.generated.css",
"watch:tailwind": "postcss -w src/tailwind.css -o src/tailwind.generated.css",
"start": "react-scripts start",
"dev": "run-p watch:tailwind start",
"prebuild": "npm run build:tailwind",
"build": "react-scripts build",
"test": "react-scripts test",
"test:all": "CI=true react-scripts test && yarn run lint",
"lint": "eslint --ext .tsx --ext .ts src/",
"lint:fix": "eslint --ext .tsx --ext .ts src/ --fix",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "4.0.0",
"autoprefixer": "9.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.2.0",
"tailwindcss": "^1.9.6",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run test:all"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
}
}