-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "next-blog",
"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",
"compile": "babel ./src --out-dir dist --extensions .ts,.tsx"
},
"dependencies": {
"@babel/cli": "^7.12.8",
"axios": "^0.21.1",
"concurrently": "^5.3.0",
"dayjs": "^1.9.8",
"github-markdown-css": "^4.0.0",
"gray-matter": "^4.0.2",
"highlight.js": "^10.7.2",
"lodash": "^4.17.20",
"marked": "^1.2.5",
"md5": "^2.3.0",
"next": "9.5.5",
"next-iron-session": "^4.1.10",
"pg": "^8.5.1",
"query-string": "^6.13.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-markdown-editor-lite": "^1.2.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"ua-parser-js": "^0.7.22"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.12.1",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.165",
"@types/marked": "^1.2.0",
"@types/md5": "^2.2.1",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^16.9.8",
"@types/styled-jsx": "^2.2.8",
"@types/ua-parser-js": "^0.7.33",
"next-images": "^1.6.2",
"typescript": "^4.1.2",
"typescript-plugin-css-modules": "^2.8.0"
}
}