forked from async-labs/builderbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
67
68
69
{
"name": "builderbook",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "nodemon server/app.js --watch server",
"build": "NODE_ENV=production 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.9.3",
"@octokit/rest": "^16.23.2",
"aws-sdk": "2.437.0",
"compression": "1.7.4",
"connect-mongo": "2.0.3",
"dotenv": "7.0.0",
"express": "4.16.4",
"express-session": "1.15.6",
"front-matter": "3.0.1",
"googleapis": "39.2.0",
"handlebars": "4.1.1",
"he": "1.2.0",
"helmet": "3.16.0",
"highlight.js": "9.15.6",
"htmlescape": "1.1.1",
"isomorphic-unfetch": "3.0.0",
"lodash": "4.17.11",
"lru-cache": "5.1.1",
"marked": "0.6.2",
"mongoose": "5.4.22",
"next": "8.0.4",
"nprogress": "0.2.0",
"passport": "0.4.0",
"passport-google-oauth": "2.0.0",
"prop-types": "15.7.2",
"qs": "6.7.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-jss": "8.6.1",
"react-stripe-checkout": "2.6.3",
"request": "2.88.0",
"sitemap": "2.1.0",
"stripe": "6.28.0",
"winston": "3.2.1",
"yarn-upgrade-all": "0.5.0"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"jest": "24.7.1",
"nodemon": "1.18.10",
"prettier": "1.16.4"
}
}