-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "qbreader",
"version": "7.6.8",
"type": "module",
"scripts": {
"test": "mocha",
"build": "npm run webpack && npm run sass",
"dev": "npm run build && npm run start",
"start": "node index.js",
"lint": "npx semistandard --fix",
"sass": "sass scss/custom.scss client/style.css --style compressed",
"sass-watch": "sass scss/custom.scss client/style.css --style compressed --watch",
"webpack": "webpack --config webpack.config.js",
"webpack-watch": "webpack --config webpack.config.js --watch"
},
"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": "^7.0.9",
"qb-answer-checker": "^1.1.9",
"stripe": "^12.10.0",
"uuid": "^8.3.2",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^10.0.0",
"chai": "^4.3.7",
"mocha": "^11.3.0",
"sass": "^1.56.2",
"semistandard": "^17.0.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1"
},
"semistandard": {
"globals": [
"$",
"bootstrap",
"React",
"ReactDOM"
]
}
}