-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.87 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "kp",
"version": "1.0.0",
"description": "The new and enhanced KainPlan.",
"main": "dist/server.js",
"scripts": {
"build:srv": "rimraf dist/* && tsc --project tsconfig.srv.json",
"build:nxt": "next build",
"build": "npm run build:srv && npm run build:nxt",
"dev": "cross-env HOST=localhost PORT=3000 nodemon",
"dev:nxt": "cross-env KAIN_ENV=noauth next",
"dev:nodemon": "ts-node --project tsconfig.srv.json src/server.ts",
"start": "cross-env NODE_ENV=production node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KainPlan/kp.git"
},
"author": "KainPlan",
"license": "MIT",
"bugs": {
"url": "https://github.com/KainPlan/kp/issues"
},
"homepage": "https://github.com/KainPlan/kp#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"animejs": "^3.2.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cropperjs": "^1.5.9",
"dot-env": "0.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"isomorphic-unfetch": "^3.1.0",
"mime": "^2.5.0",
"mongoose": "^5.11.12",
"next": "^10.0.5",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^7.0.1",
"next-optimized-images": "^2.6.2",
"nprogress": "^0.2.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"potrace": "^2.1.8",
"probe-image-size": "^6.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-particles-js": "^3.4.1",
"recompose": "^0.30.0",
"sass": "^1.32.4",
"uid-safe": "^2.1.5",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/animejs": "^3.1.2",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/mongoose": "^5.10.3",
"@types/next": "^9.0.0",
"@types/node": "^14.14.21",
"@types/nprogress": "^0.2.0",
"@types/passport": "^1.0.5",
"@types/passport-google-oauth20": "^2.0.6",
"@types/passport-local": "^1.0.33",
"@types/pg": "^7.14.8",
"@types/probe-image-size": "^5.0.1",
"@types/react": "^17.0.0",
"@types/recompose": "^0.30.7",
"@types/uid-safe": "^2.1.2",
"@types/winston": "^2.4.4",
"cross-env": "^7.0.3",
"node-pre-gyp": "^0.17.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}