forked from Ammaar-Alam/tigertype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.24 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.24 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
{
"name": "tigertype",
"version": "1.0.0",
"description": "Princeton-themed typing platform for speed typing practice and competitions",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js --ignore client/",
"client": "cd client && npm run dev",
"client:build": "cd client && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:all": "npm install && cd client && npm install",
"build": "npm run client:build",
"heroku-postbuild": "cd client && npm install && npm run build && cd .. && node -e \"require('./server/db').initDB()\"",
"migrate": "node -e \"require('./server/db').initDB()\"",
"test": "jest --config jest.config.js --detectOpenHandles --verbose",
"test:server": "jest --config jest.config.js --detectOpenHandles --verbose --testPathPattern=server",
"test:client": "cd client && npm test",
"test:client:progress": "cd client && npm run test:progress",
"test:all": "npm run test:server && npm run test:client",
"test:all:pretty": "npm run test:server && npm run test:client:progress",
"fix:snippets:dry": "node server/scripts/fix_snippet_trailing_newlines.js",
"fix:snippets:apply": "node server/scripts/fix_snippet_trailing_newlines.js --apply",
"changelog:publish": "node server/scripts/publish-changelog.js"
},
"dependencies": {
"@azure/msal-node": "^3.8.1",
"@jridgewell/gen-mapping": "^0.3.8",
"aws-sdk": "^2.1692.0",
"axios": "^1.6.2",
"cheerio": "^1.0.0",
"colors": "^1.4.0",
"connect-pg-simple": "^10.0.0",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"multer": ">=2.0.2",
"nodemailer": "^7.0.10",
"pg": "^8.11.3",
"promptly": "^3.2.0",
"request": "^2.88.2",
"sharp": "^0.34.1",
"socket.io": "^4.7.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"concurrently": "^8.2.1",
"jest": "^29.7.0",
"mock-socket": "^9.3.1",
"nodemon": "^3.0.1",
"pg-mem": "^2.8.1",
"pretty-format": "^29.7.0",
"socket.io-client": "^4.7.2",
"supertest": "^6.3.3",
"vite": "^7.1.3"
},
"engines": {
"node": "20.11.1"
},
"author": "TigerType Team",
"license": "MIT"
}