forked from phuocng/html-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
53
54
{
"name": "html-dom",
"description": "Common tasks to manage HTML DOM with native API",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "[email protected]",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://htmldom.dev",
"keywords": [
"dom",
"document object model",
"dom api",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/1milligram/html-dom"
},
"bugs": {
"url": "https://github.com/1milligram/html-dom/issues"
},
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write \"**/*.+(css|html|json|js|jsx|mdx|scss|ts|tsx)\"",
"preexport": "npm run build",
"export": "next export",
"deploy": "npm run export && netlify deploy --prod --dir=out",
"prestart": "npm run export",
"start": "serve out"
},
"dependencies": {
"@1milligram/design": "^0.4.0",
"@1milligram/frame": "^1.0.1",
"gray-matter": "^4.0.3",
"next": "^11.1.2",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.1",
"remark-directive": "^2.0.0",
"remark-gfm": "^2.0.0"
},
"devDependencies": {
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"prettier": "^2.4.0",
"sass": "^1.39.2",
"serve": "^12.0.1",
"typescript": "^4.4.3"
}
}