-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.34 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.34 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
{
"name": "@zajno/static-site-template",
"version": "2.0.0",
"description": "Static website template by Zajno",
"private": true,
"author": "Zajno <hello@zajno.com> (https://zajno.com)",
"engines": {
"yarn": "^1.22",
"node": "^16"
},
"scripts": {
"emulate": "firebase emulators:start --only hosting",
"dev": "webpack serve --mode development --env noclear",
"ts:w": "tsc --noEmit --watch",
"build": "webpack --mode development",
"build:prod": "webpack --mode production --define-process-env-node-env production",
"build:prod:staging": "yarn && (cross-env APP_ENV=staging yarn build:prod)",
"build:prod:production": "yarn && (cross-env APP_ENV=production yarn build:prod)",
"deploy:firebase:staging": "firebase deploy --only hosting:web-stage",
"deploy:firebase:production": "firebase deploy --only hosting:web-prod",
"lint": "eslint \"app/**/*.ts\""
},
"dependencies": {
"@zajno/common": "^2.0.5",
"@zajno/common-web": "^1.0.0",
"core-js": "^3.26.0",
"detect-browser": "^5.3.0",
"gsap": "^3.11.3",
"lottie-web": "^5.9.6",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/core-js": "^2.5.5",
"@types/node": "^18.11.7",
"@zajno/eslint-config": "^2.2.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.28.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"git-rev-sync": "^3.0.2",
"html-inline-css-webpack-plugin": "1.11.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.0",
"mobx": "^6.7.0",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.3",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"sitemap-webpack-plugin": "^1.1.1",
"svgo-loader": "^3.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"underscore": "^1.13.6",
"underscore-template-loader": "^1.2.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}