-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
54 lines (54 loc) · 1.57 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": "@w3id/webunconfid-website",
"version": "1.0.0",
"description": "Website for WebunconfID",
"main": "N/A",
"repository": "https://github.com/w3id/webunconfid-website.git",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"production": "yarn build && yarn export",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"validate": "yarn type-check && yarn lint"
},
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.8",
"@chakra-ui/icons": "^1.0.0-rc.8",
"date-fns": "^2.16.1",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"framer-motion": "^2.9.4",
"gray-matter": "^4.0.2",
"htmr": "^0.9.2",
"markdown-it": "^12.0.2",
"markdown-it-implicit-figures": "^0.10.0",
"modern-normalize": "^1.0.0",
"next": "^10.0.1",
"next-seo": "^4.15.1",
"polished": "^4.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typeface-inter": "3.15.0"
},
"devDependencies": {
"@types/markdown-it": "^10.0.2",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/styled-jsx": "^2.2.8",
"cross-env": "^7.0.2",
"eslint": "6.8.0",
"eslint-config-blvd": "^1.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}