-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "into-the-silence",
"version": "1.0.0",
"description": "website of heidrun rieger",
"main": "index.js",
"author": "florentin luca rieger",
"license": "MIT",
"dependencies": {
"@zeit/next-less": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"less": "^3.9.0",
"next": "^8.1.1-canary.69",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"smoothscroll-polyfill": "^0.4.4"
},
"scripts": {
"dev": "next ./src",
"build": "next build ./src",
"start": "next start ./src",
"export": "yarn build:contentIndexFile && next build ./src && next export ./src -o ./out && yarn copy:redirects",
"build:contentIndexFile": "node scripts/generateContentIndexFile.ts",
"copy:redirects": "node scripts/copyRedirectsToOut.ts"
},
"devDependencies": {
"@types/next": "^8.0.4",
"@types/react": "^16.8.14",
"@types/smoothscroll-polyfill": "^0.3.1",
"frontmatter-markdown-loader": "^1.6.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2",
"typings-for-css-modules-loader": "^1.7.0"
}
}