This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.69 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
81
82
83
84
85
86
{
"name": "malang",
"version": "1.0.0",
"description": "dividend portfolio tracker - analyser - stimulator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf ./build",
"build2": "npm run build-ts && npm run copy-static-assets",
"build": "npm run build-ts",
"build:client": "tsc --p tsconfig.client.json",
"prebuild:webpack": "rimraf ./public/js",
"build:webpack": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack",
"build-ts": "tsc",
"copy-static-assets": "ts-node src/util/copyPublicAssets.ts",
"start": "npm run build && node build/index.js",
"start:dev": "npm run build && nodemon build/index.js",
"lint": "npm run lint:style && npm run lint:code",
"lint:style": "npx stylelint \"**/*.css\"",
"lint:code": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidasXIV/malang.git"
},
"keywords": [
"dividends",
"portfolio",
"simulator"
],
"author": "Aman Shaikh (mxiv)",
"license": "ISC",
"bugs": {
"url": "https://github.com/MidasXIV/malang/issues"
},
"homepage": "https://github.com/MidasXIV/malang#readme",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/cheerio": "^0.22.17",
"@types/express": "^4.17.3",
"@types/express-handlebars": "^3.1.0",
"@types/morgan": "^1.9.0",
"@types/node": "^13.13.12",
"@types/request": "^2.48.4",
"@types/shelljs": "^0.8.8",
"@types/webpack": "^4.41.17",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"shelljs": "^0.8.4",
"stylelint": "^13.4.1",
"stylelint-config-standard": "^20.0.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"apexcharts": "^3.19.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.2",
"google-spreadsheet": "^3.0.11",
"morgan": "^1.10.0",
"request": "^2.88.2"
}
}