-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "qbreader",
"version": "7.3.0",
"type": "module",
"scripts": {
"test": "mocha",
"build": "npm run compile-jsx && npm run sass && npm test",
"compile-jsx": "babel client --extensions .jsx --out-file-extension .min.js --out-dir client",
"start": "node index.js",
"sass": "sass scss/light.scss client/bootstrap/light.css && sass scss/dark.scss client/bootstrap/dark.css",
"lint": "npx semistandard --fix",
"test:frontend": "",
"test:backend": "mocha test/database.test.js",
"test:all": "npm run test:frontend && npm run test:backend",
"watch-jsx": "babel client --extensions .jsx --out-file-extension .min.js --out-dir client --watch"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.633.0",
"bootstrap": "5.2.3",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"damerau-levenshtein-js": "^1.1.8",
"dompurify": "^3.0.0",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"express-ipfilter": "^1.3.1",
"express-rate-limit": "^6.7.0",
"jsdom": "^21.1.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.17.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.13",
"number-to-words": "^1.2.4",
"qb-answer-checker": "^1.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"roman-numerals": "^0.3.2",
"stemmer": "^2.0.1",
"stripe": "^12.10.0",
"uuid": "^8.3.2",
"ws": "^8.8.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-preset-minify": "^0.5.2",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"eslint-plugin-react": "^7.31.11",
"mocha": "^10.2.0",
"sass": "^1.56.2",
"semistandard": "^17.0.0"
},
"semistandard": {
"globals": [
"$",
"bootstrap",
"React",
"ReactDOM"
],
"ignore": [
"client/bootstrap/*"
]
}
}