-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.09 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
{
"name": "curriculum",
"version": "0.1.0",
"private": true,
"homepage": "https://www.danielramos.me",
"dependencies": {
"@contentful/rich-text-html-renderer": "14.1.2",
"@types/classnames": "2.2.11",
"@types/node": "14.14.22",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"classnames": "2.2.6",
"gh-pages": "3.1.0",
"isomorphic-unfetch": "3.1.0",
"next": "10.0.5",
"puppeteer": "5.5.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "0.4.0",
"typescript": "4.1.3"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"pdf": "node scripts/pdf.js",
"deploy": "gh-pages -t -f -d out -b master"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"express": "4.17.1",
"prettier": "2.2.1"
}
}