-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "qbreader",
"version": "26.03",
"type": "module",
"scripts": {
"build": "npm run webpack && npm run sass",
"dev": "npm run build && npm run start",
"lint": "npx semistandard --fix",
"sass": "sass scss/custom.scss client/style.css --style compressed",
"start": "node server.js",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dompurify": "^3.0.0",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"express-rate-limit": "^6.7.0",
"jsdom": "^28.1.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^6.17.0",
"morgan": "^1.10.0",
"nodemailer": "^8.0.4",
"qb-answer-checker": "^1.1.9",
"stripe": "^12.10.0",
"uuid": "^14.0.0",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^10.0.0",
"sass": "^1.56.2",
"semistandard": "^17.0.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"yargs": "^18.0.0"
},
"semistandard": {
"globals": [
"bootstrap",
"React",
"ReactDOM"
]
}
}