-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "my-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typeorm:build": " babel ./src -w --out-dir dist --extensions .ts,.tsx",
"m:run": "typeorm migration:run",
"m:revert": "typeorm migration:revert",
"e:create": "typeorm entity:create",
"m:create": "typeorm migration:create"
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@primer/css": "^15.1.0",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.160",
"@types/showdown": "^1.9.3",
"@types/ua-parser-js": "^0.7.33",
"axios": "^0.20.0",
"editor": "^1.0.0",
"front-matter": "^4.0.2",
"github-markdown-css": "^4.0.0",
"loadash": "^1.0.0",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"next": "9.5.2",
"next-images": "^1.4.1",
"next-iron-session": "^4.1.8",
"pg": "^8.3.2",
"query-string": "^6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-markdown": "^4.3.1",
"react-mde": "^10.2.1",
"reflect-metadata": "^0.1.13",
"showdown": "^1.9.1",
"typeorm": "^0.2.25",
"typescript": "3.9.2",
"ua-parser-js": "^0.7.21"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.10.5",
"@types/md5": "^2.2.0",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"dayjs": "^1.8.34",
"file-loader": "^6.0.0"
}
}