forked from vfat-io/vfat-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.5 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
91
92
93
94
95
96
97
98
99
{
"name": "yieldfarming.info",
"version": "1.0.0",
"description": "Boilerplate for a Static website using EJS and SASS",
"main": "index.js",
"scripts": {
"start": "browser-sync start -s 'dist' -f 'dist' --no-open --no-notify --reload-debounce 50",
"setup-for-dev": "NODE_ENV=development npm-run-all --sequential rmprod copy-to-dist build:html",
"dev": "npm run setup-for-dev && npm-run-all --parallel start watch:*",
"build": "NODE_ENV=production npm-run-all --sequential rmprod copy-to-dist minify:js minify:css prepend-banner hash-filenames minify:html",
"build:html": "NODE_ENV=development babel-node build-tools/ejs-to-html.mjs",
"build:js": "NODE_ENV=development npx webpack -d",
"build:css": "NODE_ENV=development npm run sass && npm run autoprefixer",
"watch:html": "NODE_ENV=development babel-node build-tools/ejs-to-html.mjs --watch",
"watch:js": "NODE_ENV=development npx webpack -w -d --display minimal",
"watch:css": "NODE_ENV=development npm run sass && node-sass -w -r src/css -o dist/css --source-map true",
"minify:html": "NODE_ENV=production npm run build:html && babel-node build-tools/minify-html.js",
"minify:js": "NODE_ENV=production npx webpack -p",
"minify:css": "NODE_ENV=production npm run build:css && babel-node build-tools/minify-css.js",
"sass": "node-sass src/css -o dist/css --source-map-embed true",
"autoprefixer": "postcss dist/css/**/*.css --use autoprefixer -r",
"copy-to-dist": "babel-node build-tools/copy-to-dist.mjs",
"hash-filenames": "babel-node build-tools/hash-filenames.js",
"prepend-banner": "babel-node build-tools/prepend-banner.js",
"rmprod": "rimraf filename-map.json && rimraf dist",
"prettier": "prettier --write 'src/**/*.{js,css,scss,json,html}'",
"deploy": "gh-pages -d dist"
},
"author": "Jongseung Lim",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.9.0",
"autoprefixer": "^7.2.6",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.7",
"clean-css": "^4.2.3",
"cross-env": "^7.0.2",
"ejs": "^2.7.4",
"gh-pages": "^3.1.0",
"html-minifier": "^3.5.21",
"node-sass": "^6.0.0",
"node-watch": "^0.6.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^4.1.1",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@walletconnect/web3-provider": "^1.4.1",
"asciichart": "^1.5.24",
"clear": "^0.1.0",
"cli-color": "^2.0.0",
"console-table-printer": "^2.7.3",
"core-js": "^3.15.1",
"diff": "^4.0.2",
"dompurify": "^2.0.8",
"ethcall": "^4.2.5",
"ethers": "^5.3.0",
"fuse.js": "^6.4.1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"numbro": "^2.3.2",
"picturefill": "^3.0.3",
"web3modal": "^1.9.3"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yieldfarming/yieldfarming.git"
},
"keywords": [
"EJS",
"SASS",
"Webpack",
"Boilerplate",
"Static",
"NodeJS",
"lazy loading",
"front-end"
],
"bugs": {
"url": "https://github.com/yieldfarming/yieldfarming/issues"
},
"homepage": "https://yieldfarming.info"
}