-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
43
44
45
46
47
48
49
50
{
"name": "npmkit-website",
"version": "1.0.0",
"description": "Website for npmkit app",
"main": "./pages/index.js",
"repository": "https://github.com/sbekrin/npmkit.app",
"homepage": "https://npmkit.app",
"author": "Sergey Bekrin <sergey@bekrin.me> https://bekrin.me",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start"
},
"dependencies": {
"next": "^6.1.1",
"node-fetch": "^2.1.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"styled-components": "^3.3.3",
"system-font-css": "^2.0.2"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.5.1",
"raw-loader": "^0.5.1",
"serve": "^9.2.0"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"trailingComma": "all"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
]
}
}