This repository has been archived by the owner on Mar 28, 2019. It is now read-only.
forked from async-labs/builderbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "builderbook",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon server/app.js --watch server",
"build": "next build",
"start": "node server/app.js",
"lint": "eslint components pages lib server",
"test": "jest --coverage",
"now": "now && now alias && now rm builderbook --safe --yes",
"now-upgrade": "npm install now -g",
"processes": "ss -lptn 'sport = :8000'",
"kill-pud": "kill -9 <pid>"
},
"jest": {
"coverageDirectory": "./.coverage"
},
"dependencies": {
"@material-ui/core": "^3.3.0",
"@octokit/rest": "^15.15.1",
"aws-sdk": "^2.339.0",
"compression": "^1.7.3",
"connect-mongo": "^2.0.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"front-matter": "^3.0.0",
"googleapis": "^34.0.0",
"handlebars": "^4.0.12",
"he": "^1.2.0",
"helmet": "^3.14.0",
"highlight.js": "^9.13.1",
"htmlescape": "^1.1.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"lru-cache": "^4.1.3",
"marked": "^0.5.1",
"mongoose": "^5.3.5",
"next": "^7.0.2",
"nprogress": "^0.2.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-jss": "^8.6.1",
"react-stripe-checkout": "^2.6.3",
"request": "^2.88.0",
"sitemap": "^2.1.0",
"stripe": "^6.12.1",
"winston": "^3.1.0",
"yarn-upgrade-all": "^0.5.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4"
}
}