-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
38
39
40
41
42
43
{
"name": "reactbris.org",
"version": "2.0.0",
"description": "ReactBris website.",
"repository": "[email protected]:reactbris/site.git",
"author": "Lochlan Bunn <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "_LOCAL=true next build",
"start": "_LOCAL=true next start",
"now-build": "next build",
"now-start": "next start --port $PORT",
"lint": "prettier --write \"{pages,static}**/*.{js,css,md}\" --write \"{package,now}.json\" --write \"now.config.js\""
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"express": "^4.16.4",
"isomorphic-fetch": "^2.2.1",
"meetup-api": "^1.4.37",
"next": "^9.3.2",
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"babel-plugin-inline-react-svg": "^1.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}