forked from Benricheson101/discord-statuspage-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "discord-statuspage-v2",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && copyfiles -u 1 \"src/**/*.html\" build",
"dev": "nodemon --exec 'yarn tsc -p tsconfig.json && yarn html && node build/index.js' --ignore build/ --ext ts",
"html": "copyfiles -u 1 \"src/**/*.html\" build"
},
"devDependencies": {
"@types/mongodb": "^3.5.18",
"@types/node": "^13.9.8",
"@types/node-fetch": "^2.5.5",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "4",
"nodemon": "^2.0.4",
"typescript": "^3.8.3"
},
"dependencies": {
"formdata": "^0.10.4",
"moment": "^2.26.0",
"mongodb": "^3.5.7",
"node-fetch": "^2.6.0"
}
}