This repository has been archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.47 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
{
"name": "oxeye",
"description": "Sapper Universal/Isomorphic Web Application Skeleton Project Implementing Authentication, Authorization and Accounting",
"version": "0.21.1",
"repository": {
"type": "git",
"url": "[email protected]:acim/oxeye.git"
},
"license": "MIT",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"validate": "svelte-check --ignore src/node_modules/@sapper"
},
"dependencies": {
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.1",
"express-rate-limit": "^5.2.3",
"helmet": "^4.2.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mongoose": "~5.10.0",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"randomstring": "^1.1.5",
"sirv": "^1.0.10",
"validator": "^13.5.1",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "~10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^1.0.10",
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/express-rate-limit": "^5.1.0",
"@types/helmet": "4.0.0",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/mailgun-js": "^0.22.11",
"@types/mongoose": "^5.10.2",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.11",
"@types/randomstring": "^1.1.6",
"@types/validator": "^13.1.1",
"@types/winston": "^2.4.4",
"rollup": "^2.34.2",
"rollup-plugin-svelte": "~6.1.0",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.28.10",
"sapper-environment": "^1.0.1",
"svelte": "^3.31.0",
"svelte-check": "^1.1.20",
"svelte-chota": "^1.7.1",
"svelte-preprocess": "^4.6.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
}
}