-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
67
68
69
{
"name": "wwugreatpuzzlehunt",
"version": "1.0.0",
"description": "A Puzzle Hunt Game System",
"main": "main.js",
"scripts": {
"start": "meteor --settings settings-development.json || true",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "git tag `date \"+deploy-%Y_%m_%d-%H_%M_%S\"` && git push --tags && mup deploy --config=mup-production.js --settings=settings-production.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyle-rader/greatpuzzlehunt.git"
},
"author": "Kyle W. Rader",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyle-rader/greatpuzzlehunt/issues"
},
"homepage": "https://github.com/kyle-rader/greatpuzzlehunt#readme",
"dependencies": {
"@babel/runtime": "^7.26.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.1",
"clipboard": "^2.0.8",
"dompurify": "^3.0.9",
"history": "^5.2.0",
"jquery": "^3.6.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"marked": "^12.0.1",
"meteor-node-stubs": "^1.1.0",
"minipass": "^7.1.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"mongodb": "^6.11.0",
"os-browserify": "^0.3.0",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-addons-pure-render-mixin": "^15.6.3",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-paginate": "^8.0.3",
"react-router-dom": "^6.1.1",
"react-scroll-up": "^1.3.7",
"react-scrollchor": "^7.0.1",
"react-slick": "^0.28.1",
"react-youtube": "^7.13.1",
"request": "^2.88.2",
"semantic-ui-react": "^2.1.5",
"slick-carousel": "^1.8.1",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"ts-node": "^10.9.2"
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}