-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.58 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.58 KB
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
{
"name": "codingforyou.net",
"description": "codingforyou.net - website",
"version": "0.0.1",
"scripts": {
"dev": "npm run start:db && sapper dev --live false",
"start": " npm run start:db && node __sapper__/build",
"start:whf": "stripe listen --events checkout.session.completed --forward-to localhost:3000/api/stripe/webhook",
"start:db": "if ! (pgrep mongod); then mongod --config /usr/local/etc/mongod.conf --fork; fi",
"stop:db": "pkill mongod || true",
"build": "npm run build:sapper && run-p --race start build:sitemap",
"build:sapper": "sapper build --legacy",
"build:sitemap": "sleep 10 && node ./generate-sitemap.js",
"export": "sapper export --legacy",
"predeploy": "npm i && npm run build",
"deploy": "pm2 stop codingforyou.net && pm2 start pm2.config.js && pm2 save"
},
"dependencies": {
"body-parser": "^1.19.0",
"clear": "^0.1.0",
"colors": "^1.4.0",
"compression": "^1.7.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"format-message": "^6.2.3",
"fuzzy-search": "^3.2.1",
"is-mobile": "^2.2.1",
"memorystore": "^1.6.2",
"mongoose": "^5.9.4",
"nodemailer": "^6.4.5",
"nodemailer-express-handlebars": "^3.1.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"quill": "^1.3.7",
"scroll-out": "^2.2.8",
"sirv": "^0.4.0",
"string-template": "^1.0.0",
"stripe": "^8.32.0",
"svelte-intl": "^1.1.0",
"sweetalert2": "^9.10.2",
"xss": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.8.7",
"@babel/runtime": "^7.8.7",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.2.0",
"advanced-sitemap-generator": "^1.6.9",
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"import-sort-style-module": "^6.0.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-plugin-import-sort": "0.0.3",
"replace-in-files-cli": "^0.3.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^5.3.0",
"sapper": "^0.27.11",
"svelte": "^3.20.0",
"svelte-preprocess": "^3.5.0",
"svelte-spinner": "^2.0.2",
"xml2js": "^0.4.23"
},
"importSort": {
".js": {
"style": "module"
}
}
}