-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "lqm",
"description": "Blog by Lương Quang Mạnh",
"license": "MIT",
"author": "Luong Quang Manh",
"repository": "github:lqmanh/lqm",
"version": "1.5.0",
"main": "pages/index.js",
"scripts": {
"clean:app": "rm -r .next dist",
"clean:content": "rm -r content/*.json content/.*.json",
"clean:deps": "rm -r node_modules",
"clean": "yarn run clean:app && yarn run clean:content && yarn run clean:deps",
"dev": "next",
"build:app": "next build",
"build:content": "node content-builder.js",
"build": "yarn run build:content && yarn run build:app",
"start": "next start"
},
"dependencies": {
"axios": "^0.19.2",
"bulma": "^0.9.0",
"dayjs": "^1.8.30",
"front-matter": "^3.1.0",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-share": "^4.2.1",
"sass": "^1.26.10"
},
"devDependencies": {
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"directory-stat": "^1.0.3",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.3",
"prettier": "^2.0.5",
"showdown": "^1.9.1",
"showdown-footnotes": "^2.1.2",
"showdown-highlight": "^2.1.4",
"typescript": "^3.9.7"
}
}