forked from async-labs/builderbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
{
"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": "^1.3.0",
"@octokit/rest": "^15.9.4",
"aws-sdk": "^2.266.1",
"compression": "^1.7.2",
"connect-mongo": "^2.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"front-matter": "^2.3.0",
"googleapis": "^32.0.0",
"handlebars": "^4.0.11",
"he": "^1.1.1",
"helmet": "^3.12.1",
"highlight.js": "^9.12.0",
"htmlescape": "^1.1.1",
"isomorphic-unfetch": "^2.0.0",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"marked": "^0.4.0",
"mongoose": "^5.1.7",
"next": "^6.1.1",
"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.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.6.0",
"react-stripe-checkout": "^2.6.3",
"request": "^2.87.0",
"sitemap": "^1.13.0",
"stripe": "^6.2.0",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.2.0",
"nodemon": "^1.17.5"
}
}