-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "networksnapshots",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DiviProject/NetworkSnapshots.git",
"author": "Chris Cates <hello@chriscates.ca>",
"license": "MIT",
"dependencies": {
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"@zeit/next-css": "^1.0.1",
"aws-sdk": "^2.624.0",
"babel-plugin-styled-components": "^1.10.7",
"execa": "^4.0.0",
"moment-timezone": "^0.5.28",
"next": "^9.2.1",
"next-fonts": "^1.0.3",
"next-images": "^1.3.0",
"node-cron": "^2.0.3",
"path": "^0.12.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-syntax-highlighter": "^12.2.1",
"s3-upload-stream": "^1.0.7",
"ssh2": "^0.8.8",
"styled-components": "^5.0.1",
"superagent": "^5.2.2",
"typescript": "^3.8.3",
"url": "^0.11.0",
"xelement": "^1.0.17"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export -o build",
"build-autozip": "tsc automation/Autozip.ts --outdir dist",
"build-generate": "tsc automation/Generate.ts --outdir dist",
"autozip": "npm run build-autozip && node dist/Autozip.js",
"generate": "npm run build-generate && node dist/Generate.js"
}
}