forked from phuocng/1loc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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": "1loc",
"description": "What's your favorite JavaScript single LOC (line of code)",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "[email protected]",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://1loc.dev",
"keywords": [
"JavaScript",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/1milligram/1loc"
},
"bugs": {
"url": "https://github.com/1milligram/1loc/issues"
},
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write \"**/*.+(css|html|json|js|jsx|md|mdx|scss|ts|tsx)\"",
"preexport": "npm run build",
"export": "next export",
"deploy": "npm run export && netlify deploy --prod --dir=out",
"sitemap": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node bin/generateSitemap.ts"
},
"dependencies": {
"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-gfm": "^3.0.0"
},
"devDependencies": {
"@1milligram/design": "^0.4.0",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"gray-matter": "^4.0.3",
"prettier": "^2.4.0",
"sass": "^1.39.2",
"serve": "^12.0.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
}
}