-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "nico.dev",
"version": "2.1.8",
"description": "A Preact-APP for nico.dev",
"repository": {
"type": "git",
"url": "git@github.com:nico-martin/nico.dev.git"
},
"dependencies": {
"@next/font": "^13.1.6",
"dayjs": "^1.10.6",
"imagemagick": "^0.1.3",
"lazysizes": "^5.3.2",
"next": "^12.3.4",
"next-plugin-preact": "^3.0.7",
"next-pwa": "^5.2.23",
"postcss-nested": "^5.0.5",
"preact": "^10.12.1",
"preact-render-to-string": "^5.2.6",
"react": "npm:@preact/compat@^17.1.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0",
"react-to-print": "^2.12.6"
},
"devDependencies": {
"@nico-martin/class-names-map": "^1.0.1",
"@svgr/webpack": "^7.0.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.2.6",
"concurrently": "^8.1.0",
"mini-css-class-name": "^0.12.1",
"path": "^0.12.7",
"postcss-mixins": "^8.1.0",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.3.1",
"raw-loader": "^4.0.2",
"stylelint": "^15.6.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "4.9.5"
},
"author": "Nico Martin",
"license": "UNLICENSED",
"scripts": {
"dev": "concurrently \"npm run next-dev\" \"npm run ssl\"",
"next-dev": "next dev -p 8916",
"build": "next build",
"static": "next build && next export",
"start": "next start",
"prod": "npm run build && npm run start",
"ssl": "npx local-ssl-proxy --key /Users/nico/Documents/Dev/_ssh/localhost-key.pem --cert /Users/nico/Documents/Dev/_ssh/localhost.pem --source 8917 --target 8916"
},
"bugs": {
"url": "https://github.com/nico-martin/nico.dev/issues"
},
"homepage": "https://github.com/nico-martin/nico.dev",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"^next",
"^@theme$",
"^@comps/(.*)$",
"^@utils/(.*)$",
"^@types/(.*)$",
"^[./]"
]
}
}