-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "cv-builder",
"version": "1.0.0",
"description": "A Next.js based project to generate my personal CV.",
"scripts": {
"dev": "next",
"dev:debug": "yarn dev --inspect=localhost:9227",
"build": "next build",
"export": "rm -rf docs && npm run build && next export -o docs && node ghPages",
"start": "next start",
"generatePdf": "ts-node --project tsconfig.pdf.json toPdf.ts http://localhost:3000 .next/cv.pdf"
},
"author": "Damian Frizzi",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6",
"next": "^7.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/next": "^7.0.0",
"@types/puppeteer": "^1.9.1",
"@types/react": "^16.4.14",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"cssnano": "^4.1.7",
"fork-ts-checker-webpack-plugin": "^0.4.9",
"next-compose-plugins": "^2.1.1",
"postcss-nested": "^4.1.0",
"postcss-preset-env": "^6.4.0",
"prettier": "^1.14.3",
"puppeteer": "^1.9.0",
"replace-in-file": "^3.4.2",
"stylelint-config-prettier": "^4.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.1"
}
}