This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 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
77
78
79
80
81
82
83
84
85
{
"name": "reminder-app",
"version": "1.0.0",
"description": "Reminder app in node.js",
"main": "index.js",
"dependencies": {
"body-parser": "1.18.3",
"cache-loader": "1.2.2",
"chalk": "2.4.1",
"clean-webpack-plugin": "0.1.19",
"compression": "1.7.3",
"css-hot-loader": "1.4.1",
"css-loader": "1.0.0",
"dateformat": "3.0.3",
"escape-html": "1.0.3",
"express": "4.16.3",
"express-handlebars": "3.0.0",
"express-minify-html": "0.12.0",
"express-ws": "4.0.0",
"file-loader": "1.1.11",
"fs-extra": "7.0.0",
"helmet": "3.13.0",
"inquirer": "6.0.0",
"level-uplevel": "2.0.5",
"marked": "0.7.0",
"mini-css-extract-plugin": "0.4.1",
"node-cron": "1.2.1",
"node-sass": "4.13.1",
"ora": "3.0.0",
"pm2": "2.10.4",
"sass-loader": "7.0.3",
"simplepicker": "2.0.0",
"source-map-loader": "0.2.3",
"svg-url-loader": "2.3.2",
"ts-loader": "4.4.2",
"typescript": "2.9.2",
"web-push": "3.3.2",
"webpack": "4.16.2",
"webpack-bundle-tracker": "0.3.0",
"webpack-cli": "3.1.0"
},
"optionalDependencies": {
"start-on-windows-boot": "1.0.0"
},
"devDependencies": {
"@types/dateformat": "^1.0.1",
"cypress": "^3.1.0",
"eslint": "^5.2.0",
"eslint-plugin-cypress": "^2.0.1",
"glob": "^7.1.2",
"http-proxy-middleware": "^0.18.0",
"node-fetch": "^2.6.1",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"webpack-dev-server": "^3.1.11"
},
"scripts": {
"dev": "node tools/dev-server",
"build": "node tools/webpack",
"coverage": "nyc node tools/test-all",
"prod": "node tools/webpack && node tools/run-migrations && node app",
"test": "node tools/test-all",
"lint": "node tools/lint",
"eslint-fix": "eslint . --cache --cache-location=var/.eslintcache --fix",
"tslint-fix": "tslint -c tools/tslint-config.json -p . --fix"
},
"nyc": {
"report-dir": "var/nyc",
"temp-directory": "var/.nyc_output",
"extension": [
".js",
".ts"
],
"reporter": [
"lcov",
"text-summary"
]
},
"keywords": [],
"author": "Priyank Patel <priyankp390@gmail.com>",
"license": "MIT"
}