-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mernt",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "node .",
"dev:start": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack",
"test": "npx jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongoose": "^6.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@svgr/webpack": "^6.5.1",
"@testing-library/react": "^13.4.0",
"@types/connect-livereload": "^0.6.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/livereload": "^0.9.2",
"@types/node": "^18.11.18",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-twin": "^1.1.0",
"connect-livereload": "^0.6.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"cssnano": "^5.1.14",
"csv-loader": "^3.0.5",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-react": "^7.31.11",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"json5-loader": "^4.0.1",
"livereload": "^0.9.3",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"superagent": "^8.0.6",
"supertest": "^6.3.3",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"twin.macro": "^3.1.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1",
"xml-loader": "^1.0.0"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
],
"babelMacros": {
"twin": {
"preset": "styled-components",
"hasLogColors": false
}
},
"jest": {
"projects": [
"test/client/jest.config.js",
"test/server/jest.config.js"
]
}
}