-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "nextjs-typeorm-bloger",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": " concurrently \"next dev\" \"babel -w ./src --out-dir dist --extensions \\\".ts,.tsx\\\"\"",
"build": "next build",
"start": "next start",
"migration:create": "typeorm migration:create",
"migration:run": "typeorm migration:run",
"migration:revert": "typeorm migration:revert",
"entity:create": "typeorm entity:create",
"seed": "node dist/seed.js"
},
"dependencies": {
"@bytemd/plugin-gfm": "^1.4.0",
"@bytemd/react": "^1.4.0",
"axios": "^0.21.1",
"concurrently": "^6.0.0",
"github-markdown-css": "^4.0.0",
"gray-matter": "^4.0.2",
"lodash": "^4.17.21",
"marked": "^2.0.0",
"md5": "^2.3.0",
"next": "10.0.6",
"next-images": "^1.7.0",
"next-iron-session": "^4.1.11",
"pg": "^8.5.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"reflect-metadata": "^0.1.13",
"toml": "^3.0.0",
"typeorm": "^0.2.31",
"typescript": "^4.1.5"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.168",
"@types/marked": "^1.2.2",
"@types/md5": "^2.3.0",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/typescript": "^2.0.0"
}
}