-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.33 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "requote",
"version": "1.0.0",
"private": true,
"description": "A full stack JavaScript app for saving quotes from books.",
"main": "server/index.js",
"scripts": {
"start": "NODE_ENV=production node .",
"dev": "NODE_ENV=development nodemon .",
"build": "NODE_ENV=production webpack",
"db:up": "node database/index.js",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@joaomoreno/unique-names-generator": "^5.1.0",
"@tinymce/tinymce-react": "^4.2.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/tinymce": "^4.6.5",
"argon2": "^0.30.3",
"bootstrap": "^5.2.3",
"connect-pg-simple": "^8.0.0",
"cookie-parser": "^1.4.6",
"dompurify": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"glob-all": "^3.3.1",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.1",
"pg": "^8.8.0",
"postgres-migrations": "^5.3.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-glider": "^4.0.2",
"react-router-dom": "^6.6.1",
"react-transition-group": "^4.4.5",
"tesseract.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-react-jsx": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/dompurify": "^2.4.0",
"@types/jest": "^29.4.0",
"@types/react-transition-group": "^4.4.5",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"error-overlay-webpack-plugin": "^1.1.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"livereload": "^0.9.3",
"markuplint": "^3.0.1",
"mini-css-extract-plugin": "^2.7.2",
"msw": "^1.0.1",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.6.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"purgecss": "^5.0.0",
"purgecss-webpack-plugin": "^5.0.0",
"react-refresh": "^0.14.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylelint": "^14.16.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-hot-middleware": "^2.25.3",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "server/public"
}
}