forked from UCSD-SUMS/sums-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "sums",
"version": "0.0.1",
"description": "Website for the Society of Undergraduate Mathematics Students.",
"main": "index.js",
"authors": {
"name": "SUMS",
"email": "[email protected]"
},
"repository": "https://github.com/UCSD-SUMS/sums-vue.git",
"scripts": {
"utils": "yarn tsc",
"clean": "rm -r docs/* dist/* || true",
"dev": "vuepress dev src",
"build": "vuepress build src",
"serve": "http-server ./docs -p 8000 -a 127.0.0.1 -c-1",
"test": "yarn build && yarn serve",
"github": "VUE_BASE='/sums-vue/' yarn build",
"sync": "yarn node dist/sync.js",
"department": "yarn build && yarn sync",
"ssh": "yarn node dist/ssh.js",
"install": "yarn utils",
"newsletters": "yarn node dist/newsletters.js"
},
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/luxon": "^1.25.0",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.1",
"@types/nunjucks": "^3.1.4",
"http-server": "^0.12.3",
"prettier": "^2.1.2",
"typescript": "^4.5.5",
"vuepress": "^1.5.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"config": "^3.3.7",
"googleapis": "^68.0.0",
"luxon": "^1.25.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.5.0",
"nunjucks": "^3.2.3"
}
}