-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.13 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
{
"name": "metabolize.world",
"license": "MIT",
"author": "Shivek Khurana",
"scripts": {
"dev:site": "react-static start",
"dev:css": "postcss ./src/tw.css -o ./src/tw-style-built.css --watch --verbose",
"dev": "run-p --print-label dev:*",
"stage": "react-static build --staging",
"optimize:img": "node optimize-img.js",
"optimize:css": "purgecss --config purgecss.config.js",
"prebuild": "npm run optimize:img",
"build:css": "postcss ./src/tw.css -o ./src/tw-style-built.css",
"build:site": "react-static build",
"build": "run-s build:css build:site",
"postbuild": "npm run optimize:css",
"analyze": "react-static build --analyze",
"serve": "serve dist -p 3000",
"test:watch:op-img": "ls | entr jest -- optimize-img",
"test:watch:config": "ls | entr jest -- static.config",
"test": "jest",
"local-cms": "npx netlify-cms-proxy-server"
},
"dependencies": {
"@kyraa/tailwind": "^1.0.0",
"autoprefixer": "^10.4.2",
"axios-hooks": "^2.7.0",
"change-case": "^4.1.1",
"chokidar": "^3.3.1",
"feed": "^4.2.2",
"htmr": "^0.8.6",
"jdown": "^1.0.3",
"marked": "^0.7.0",
"postcss": "^8.4.7",
"purgecss": "^4.0.3",
"ramda": "^0.26.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropdown": "^1.7.0",
"react-fast-marquee": "^1.2.1",
"react-headroom": "^3.0.0",
"react-hot-loader": "^4.13.0",
"react-lite-youtube-embed": "^2.1.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-spring": "^9.2.4",
"react-static": "^7.2.0",
"react-static-plugin-react-router": "^7.2.3",
"react-static-plugin-sitemap": "^7.2.3",
"react-static-plugin-source-filesystem": "^7.2.3",
"react-twitter-embed": "^3.0.3",
"sharp": "^0.28.2",
"shiki": "^0.9.3",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.6.3",
"eslint": "^6.1.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"prettier": "2.4.1",
"serve": "^11.1.0"
}
}