-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 873 Bytes
/
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
{
"name": "next-sass-starter",
"title": "Next.js Sass Starter",
"description": "Use Sass to start your Next.js app with CSS superpowers!",
"version": "0.1.0",
"author": {
"name": "Colby Fayock",
"email": "[email protected]",
"url": "https://twitter.com/colbyfayock"
},
"dependencies": {
"next": "10.0.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"sass": "^1.32.8"
},
"keywords": [
"next",
"nextjs",
"next js",
"sass",
"scss",
"css"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"homepage": "https://next-sass-starter.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/next-sass-starter"
},
"bugs": {
"url": "https://github.com/colbyfayock/next-sass-starter/issues"
}
}