-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.53 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
70
71
72
73
74
75
76
{
"name": "parallel",
"description": "A project to email weekly maths problems and challenges to students.",
"url": "https://parallel.co.uk",
"repository": {
"type": "git",
"url": "https://github.com/mathigon/parallel.git"
},
"scripts": {
"start": "grunt build && npm run serve",
"serve": "grunt concurrent & firebase serve",
"export-users": "firebase auth:export ./private/tmp-users.json --format=json",
"deploy": "grunt && firebase deploy",
"convert-teachers": "node scripts/convert-teachers.js",
"convert-students": "node scripts/convert-students.js",
"get-users": "node scripts/get-users.js",
"get-points": "node scripts/get-students-points.js",
"get-results": "node scripts/get-results.js",
"get-pg-meta-json": "grunt build && node scripts/get-pg-meta-json.js",
"get-tts-results": "node scripts/get-tts-results.js",
"update-results": "node scripts/update-results.js",
"start-marsh": "grunt build && concurrently \"grunt concurrent\" \"firebase serve\""
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@johmun/vue-tags-input": "^2.1.0",
"@mathigon/hilbert": "^0.6.8",
"babel-polyfill": "^6.26.0",
"babel-preset-minify": "^0.5.1",
"cookie-parser": "^1.4.6",
"firebase-admin": "^9.11.1",
"grunt": "^1.4.1",
"grunt-autoprefixer": "^3.0.3",
"grunt-babel": "^8.0.0",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-rollup": "^11.9.0-0",
"grunt-yaml": "^0.4.2",
"jsdom": "^17.0.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.1.3",
"markdown-it-attrs": "^4.0.0",
"markdown-it-block-image": "^0.0.3",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-container": "^3.0.0",
"markdown-it-implicit-figures": "^0.10.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-synapse-table": "^1.0.6",
"markdown-it-video": "^0.6.3",
"matchdep": "^2.0.0",
"pug": "^3.0.2",
"yamljs": "^0.3.0"
},
"dependencies": {
"@firebase/app": "^0.7.0",
"aws-sdk": "^2.1252.0",
"caniuse-lite": "^1.0.3",
"concurrently": "^7.3.0",
"firebase": "^9.0.0",
"firebase-functions": "^3.18.0",
"firebase-tools": "^9.6.1",
"promise-limit": "^2.7.0"
},
"browserslist": [
"> 1%",
"not ie <= 11",
"not ios < 10"
]
}