-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.62 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
{
"name": "cards",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "webpack serve --mode=development",
"prod": "webpack serve --mode=production",
"watch:dev": "webpack build -w --mode=development",
"watch:prod": "webpack build -w --mode=production",
"build": "webpack build",
"test": "jest",
"lint": "eslint .",
"deploy": "yarn build && firebase deploy",
"deploy:nobuild": "firebase deploy",
"emulators": "firebase emulators:start"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-jsx"
],
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sss|styl)$": "<rootDir>/node_modules/jest-css-modules"
},
"setupFilesAfterEnv": [
"./test/setup-tests.ts"
]
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"compress.js": "^1.1.2",
"css-loader": "^5.2.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.25.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.23.2",
"favicons": "^6.2.1",
"favicons-webpack-plugin": "^5.0.2",
"firebase": "^8.4.3",
"firebase-mock": "^2.3.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-firebase-hooks": "^3.0.4",
"react-router-dom": "^5.2.0",
"react-test-renderer": "16.14.0",
"regenerator-runtime": "^0.13.7",
"robotstxt-webpack-plugin": "^7.0.0",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"typescript": "^4.2.4",
"web-vitals": "^1.0.1",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.1.5",
"@types/compress.js": "^1.1.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react": "16.14.0",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"firebase-tools": "^9.12.1",
"typescript-plugin-css-modules": "^3.3.0"
}
}