-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 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
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"yarn compile:watch\"",
"compile:watch": "babel -w ./src --out-dir dist --extensions .ts,.tsx",
"compile": "babel ./src --out-dir dist --extensions .ts,.tsx",
"build": "next build",
"start": "next start",
"m:create": "typeorm migration:create",
"m:run": "typeorm migration:run",
"m:revert": "typeorm migration:revert",
"e:create": "typeorm entity:create"
},
"dependencies": {
"@babel/cli": "^7.10.1",
"@types/axios": "^0.14.0",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"github-markdown-css": "^4.0.0",
"gray-matter": "^4.0.2",
"lodash": "^4.17.15",
"marked": "^1.1.0",
"md5": "^2.2.1",
"next": "9.4.1",
"next-images": "^1.4.0",
"next-iron-session": "^4.1.7",
"pg": "^8.2.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25",
"ua-parser-js": "^0.7.21"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.10.1",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.155",
"@types/marked": "^0.7.4",
"@types/md5": "^2.2.0",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/ua-parser-js": "^0.7.33",
"concurrently": "^5.2.0",
"file-loader": "^6.0.0",
"typescript": "^3.9.3"
}
}