-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.31 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
{
"name": "stimbox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon -w tailwind.config.js -e .js -x \"next dev site\"",
"dev:prod": "yarn run build && yarn run export && light-server --config .lightrc",
"build": "run-s -cls build:*",
"build:boxes": "cross-env NODE_ENV=production FORCE_COLOR=1 node boxes/build.js",
"build:next": "cross-env NODE_ENV=production FORCE_COLOR=1 next build site",
"export": "cross-env NODE_ENV=production FORCE_COLOR=1 shx rm -rf dist && cross-env NODE_ENV=production next export site -o dist && cross-env NODE_ENV=production next-sitemap && shx mv dist/404/index.html dist/404.html && shx rm -rf dist/404 && node copy-box-static-files",
"lint": "cross-env NODE_ENV=production FORCE_COLOR=1 run-p -cls --aggregate-output lint:*",
"lint:eslint-check": "cross-env NODE_ENV=production eslint-config-prettier 'src/**/*.js'",
"lint:prettier": "cross-env NODE_ENV=production prettier -c 'boxes/**/*.{js,jsx,ts,tsx}' 'site/*.{js,jsx,ts,tsx}' 'site/src/**/*.{js,jsx,ts,tsx}'",
"lint:eslint": "cross-env NODE_ENV=production eslint . --report-unused-disable-directives --color",
"lint:tsc": "cross-env NODE_ENV=production tsc --noEmit --pretty",
"gh-pages-deploy": "node .github/scripts/gh-pages-deploy.js"
},
"nodemonConfig": {
"ext": "js,jsx,ts,tsx,json,css,scss,svg",
"watch": [
"src",
"next.config.js",
".env"
]
},
"dependencies": {
"@boxes/root": "file:boxes/.Root",
"classnames": "^2.3.1",
"csstype": "^3.0.9",
"elasticlunr": "^0.9.5",
"next": "^12.0.9",
"next-plausible": "^3.1.4",
"next-transpile-modules": "^8.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"serve-static": "^1.14.1",
"simplebar": "^5.3.6",
"simplebar-react": "^2.3.6",
"tailwindcss": "^2.2.16"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@next/eslint-plugin-next": "^11.1.2",
"@types/elasticlunr": "^0.9.1",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/serve-static": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.3.6",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"execa": "^5.1.1",
"gh-pages": "^3.2.3",
"light-server": "^2.9.1",
"next-sitemap": "^1.6.168",
"node-env": "^0.1.6",
"nodegit": "^0.27.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.8",
"postcss-custom-media": "^8.0.0",
"postcss-import": "^14.0.2",
"postcss-mixins": "^8.1.0",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.4.1",
"shx": "^0.3.3",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.3",
"webpack": "^5.54.0"
}
}