-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
{
"name": "denoland.id",
"description": "Website and module registry for Deno Land Indonesia 🏡",
"version": "1.0.0",
"repository": "[email protected]:denoland-id/denoland.id.git",
"author": "Griko Nibras <[email protected]>",
"scripts": {
"now-build": "yarn build:assets && yarn build:web",
"build": "env-cmd yarn build:assets && env-cmd yarn build:web",
"build:assets": "node scripts/build.js",
"build:web": "next build",
"clean": "rimraf .next \"public/!(social.png)\"",
"develop": "next dev",
"format": "yarn format:index && yarn format:scripts && yarn format:src",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:scripts": "prettier --write \"scripts/**/*.js\"",
"format:src": "prettier --write \"src/**/*.{js,ts,tsx}\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepare": "yarn format"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"copee": "^1.0.6",
"emotion-theming": "^10.0.27",
"favicons": "^6.1.0",
"next": "^9.4.4",
"next-seo": "^4.7.3",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.0.7",
"react-icons": "^3.10.0",
"react-markdown": "^4.3.1",
"sitemap": "^6.2.0"
},
"devDependencies": {
"@types/marked": "^1.1.0",
"@types/node": "^14.0.23",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"all-contributors-cli": "^6.16.1",
"env-cmd": "^10.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn contributors:generate && yarn prepare"
}
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"license": "MIT"
}