-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 3.11 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
87
88
89
90
{
"name": "idlefinance",
"version": "0.0.1",
"description": "Idle-finance website",
"private": true,
"engines": {
"yarn": "^1.22",
"node": "^14"
},
"scripts": {
"emulate": "firebase emulators:start --only hosting",
"dev": "webpack serve --mode development --env noclear",
"build": "webpack --mode development",
"build:ts:w": "tsc --noEmit --watch",
"build:minify": "yarn build --env fullminify",
"build:prod": "webpack --node-env production --env fullminify",
"deploy": "echo 'idle.finance\nwww.idle.finance' > dist/CNAME;gh-pages -b gh-pages -d dist",
"build:release:staging": "yarn && (cross-env APP_ENV=staging yarn build:prod)",
"build:release:production": "yarn && (cross-env APP_ENV=production yarn build:prod)",
"build-deploy": "yarn build:release:production && yarn deploy",
"deploy:firebase:staging": "firebase deploy --only hosting:web-stage",
"deploy:firebase:production": "firebase deploy --only hosting:web-prod",
"lint": "eslint \"app/**/*.ts\""
},
"dependencies": {
"@splidejs/splide": "^3.6.12",
"@zajno/common": "^1.3.5",
"axios": "^0.27.2",
"clipboard": "^2.0.10",
"core-js": "^3.12.1",
"detect-browser": "^5.2.0",
"fs": "^0.0.1-security",
"gsap": "file:./gsap-by-johny.tgz",
"js-abbreviation-number": "^1.4.0",
"lottie-web": "^5.7.8",
"odometer_countup": "^1.0.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"regenerator-runtime": "^0.13.7",
"underscore-template-loader": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/core-js": "^2.5.4",
"@types/css-minimizer-webpack-plugin": "^1.3.0",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/node": "^15.6.1",
"@types/underscore": "^1.11.2",
"@types/webpack-dev-server": "3.11.4",
"@zajno/eslint-config": "^1.1.2",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.0",
"eslint": "^7.27.0",
"git-rev-sync": "^3.0.1",
"html-inline-css-webpack-plugin": "1.11.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"mobx": "^6.3.2",
"node-sass": "^6.0.0",
"postcss": "^8",
"postcss-loader": "^5",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^11.1.1",
"sitemap-webpack-plugin": "^1.1.0",
"svgo-loader": "^3.0.0",
"ts-loader": "^9.2.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"underscore": "^1.13.1",
"webpack": "^5.37.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}