-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.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
{
"name": "next-no-js",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn modfed:build:entry && echo \"BOOTSTRAP=$(node env.js)\" >> .env && next build",
"modfed:build:entry": "./node_modules/.bin/webpack --json './public/modfed-entry.json'",
"lint:fix": "prettier '**/*.{ts,tsx,js,mdx}' --write",
"next:build": "next build",
"start": "next start",
"export": "next export",
"clean": "rm -rf .next",
"test": "tsc"
},
"author": "shane osboune",
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.0.7",
"@types/cookies": "^0.7.6",
"@types/react": "^17.0.2",
"cookies": "^0.8.0",
"esbuild-loader": "^2.9.1",
"formik": "^2.2.6",
"joi": "^17.4.0",
"next": "10.0.5",
"preact": "^10.5.12",
"prettier": "^2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"rehype-highlight": "^4.1.0",
"sync-rpc": "^1.3.6",
"typescript": "^4.1.5",
"uuid": "^8.3.2",
"webpack": "5.21.2",
"webpack-cli": "^4.5.0",
"yup": "^0.32.9"
},
"resolutions": {
"webpack": "5.21.2"
},
"devDependencies": {
"autoprefixer": "^10.2.4",
"highlight.js": "^10.6.0",
"postcss": "^8.2.6",
"tailwindcss": "^2.0.3",
"@tailwindcss/forms": "^0.2.1"
}
}