-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 945 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
{
"name": "simple-site",
"version": "1.0.0",
"description": "simple template for a website using our web stack",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development next -p 4000",
"build": "next build",
"start": "next start",
"format": "prettier --write '*.js' '{components,pages}/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/simple-site.git"
},
"keywords": [
"next",
"theme-ui",
"react"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/simple-site/issues"
},
"homepage": "https://github.com/carbonplan/simple-site#readme",
"dependencies": {
"@carbonplan/components": "^12.0.0",
"@carbonplan/theme": "^7.0.0",
"next": "^12.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"theme-ui": "^0.15.3"
},
"devDependencies": {
"prettier": "2.3.2"
}
}