This repository was archived by the owner on Mar 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "journal",
"version": "0.0.1",
"description": "a blogging platform built on [matrix]",
"main": "index.js",
"scripts": {
"lint": "cd web; eslint pages style components",
"build": "cd web; next build",
"start": "cd web; node server.js"
},
"author": "Luke Barnard",
"repository": "git@github.com:lukebarnard1/journal.git",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-react": "^7.16.0"
},
"dependencies": {
"express": "^4.16.3",
"highlight.js": "^9.15.10",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.1.1",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^2.0.0",
"prop-types": "^15.7.2",
"raw-loader": "^0.5.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.1",
"react-responsive": "^5.0.0",
"redux": "^4.0.4",
"redux-saga": "^0.16.0",
"request": "^2.88.0"
}
}