-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "kristine",
"version": "0.0.3",
"main": "Website.ts",
"private": true,
"description": "Kristine is a simple discussion forum you can easily customize to make as unique as your community",
"author": {
"name": "cadox8",
"email": "cadox8@gmail.com",
"url": "https://cadox8.es"
},
"license": "GNU (https://github.com/cadox8/Kristine/blob/master/LICENSE)",
"scripts": {
"tsc": "tsc --module commonjs",
"init": "npm prune && npm install",
"dev": "nodemon",
"prod": "npm install && npm run build",
"build": "tsc --module commonjs && npm run start",
"start": "npm run build && node --experimental-modules ./build/app.js",
"style": "node-sass sass/kristine.sass public/css/kristine.css --source-map public/css/kristine.css.map -o public/css/kristine.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cadox8/Kristine.git"
},
"bugs": {
"url": "https://github.com/cadox8/Kristine/issues"
},
"homepage": "https://github.com/cadox8/Kristine#readme",
"dependencies": {
"node-fetch": "^2.6.0",
"@ptkdev/logger": "^1.5.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"body-parser": "^1.19.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"mysql": "^2.18.1",
"node-emoji": "^1.10.0",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/http-errors": "^1.6.3",
"@types/mysql": "^2.15.10",
"@types/node": "^13.13.4",
"@types/node-emoji": "^1.8.1",
"@types/pug": "^2.0.4",
"nodemon": "^2.0.3",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"node-sass": "^4.14.1"
}
}