-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
{
"name": "salvium-landing-page",
"version": "1.0.0",
"description": "Official landing page for the Salvium blockchain project",
"author": "Salvium Team",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/salvium/landing-page"
},
"bugs": {
"url": "https://github.com/salvium/landing-page/issues"
},
"homepage": "https://salvium.io",
"keywords": [
"blockchain",
"cryptocurrency",
"defi",
"landing-page",
"salvium"
],
"type": "module",
"scripts": {
"dev": "tailwindcss -i ./css/input.css -o ./css/output.css --watch",
"build": "NODE_ENV=production npm run build:clean && npm run build:css && npm run build:js && npm run optimize-images && npm run generate-icons",
"build:clean": "rm -rf dist",
"build:css": "tailwindcss -i ./css/input.css -o ./css/output.css --minify",
"build:js": "esbuild js/*.js --bundle --minify --outdir=dist/js",
"optimize-images": "node scripts/optimize-images.js",
"generate-icons": "node scripts/generate-icons.js",
"analyze": "webpack-bundle-analyzer stats.json",
"serve": "http-server . -p 3000 -c-1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"aos": "^2.3.4",
"plotly.js-dist": "^2.27.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"esbuild": "^0.24.2",
"http-server": "^14.1.1",
"postcss": "^8.4.49",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",
"webpack-bundle-analyzer": "^4.10.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}