-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "saemanga-rust",
"version": "4.1.1",
"description": "My manga website finally comes with a rust implementation. This is not in production yet but will be soon integrated. So, I'm happy to announce that this is the 4.0 version of saemanga.com!",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "npx gulp dev",
"build": "npx gulp build",
"build-prod": "npm run build-webpack-prod && npm run build-template-prod && npm run build-cargo-prod",
"build-webpack-prod": "NODE_ENV=production npx webpack",
"build-template-prod": "npx gulp build-templates",
"build-cargo-prod": "cargo build --release --bin saemanga",
"start": "cargo run",
"lint": "npx eslint assets/typescript/**/*.ts --fix",
"prod": "pm2 start process_prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liby99/saemanga-rust.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liby99/saemanga-rust/issues"
},
"homepage": "https://github.com/Liby99/saemanga-rust#readme",
"devDependencies": {
"@types/jquery": "^3.3.30",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"axios": "^0.19.0",
"clipboard": "^2.0.4",
"cookie_js": "^1.3.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"file-loader": "^3.0.1",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-nodemon": "^2.5.0",
"gulp-watch": "^5.0.1",
"handlebars": "^4.7.6",
"handlebars-loader": "^1.7.1",
"jquery": "^3.5.0",
"mini-css-extract-plugin": "^0.6.0",
"mixitup": "^3.3.1",
"node-sass": "^4.13.1",
"nodemon": "^1.19.1",
"raw-loader": "^2.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"typescript": "^3.5.2",
"url-loader": "^1.1.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"@types/cookie_js": "^1.2.1",
"copy-webpack-plugin": "^5.1.1"
}
}