-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"pnpm compile:watch\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"compile": "babel ./src --out-dir dist --extensions .ts,.tsx",
"compile:watch": "babel -w ./src --out-dir dist --extensions .ts,.tsx",
"migration:create": "typeorm migration:create",
"migration:run": "typeorm migration:run -d dist/data-source.js",
"migration:revert": "typeorm migration:revert -d dist/data-source.js",
"entity:create": "typeorm entity:create",
"seed": "node dist/seed.js",
"deploy:prod": "ssh blog@dev1 'bash -s' < bin/deploy.sh"
},
"dependencies": {
"axios": "^1.5.1",
"classnames": "^2.3.2",
"gray-matter": "^4.0.3",
"iron-session": "8.0.0-alpha.0",
"marked": "^9.1.2",
"next": "13.5.4",
"pg": "^8.11.3",
"react": "^18",
"react-dom": "^18",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/runtime": "^7.23.2",
"@types/node": "^20.8.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"prettier": "^3.0.3",
"sass": "^1.69.3",
"tailwindcss": "^3",
"typescript": "^5"
}
}