-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
{
"name": "fs-frontend",
"version": "0.0.1",
"description": "render markdown files from the file system",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch server.js --watch .env --watch lib/constants.js server.js",
"now-build": "NODE_ENV=production next build",
"heroku-postbuild": "NODE_ENV=production next build",
"start": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbiting/fs-frontend.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/orbiting/fs-frontend/issues"
},
"homepage": "https://github.com/orbiting/fs-frontend#readme",
"devDependencies": {
"file-loader": "^1.1.11",
"nodemon": "^1.18.4",
"raw-loader": "^0.5.1"
},
"dependencies": {
"@orbiting/remark-preset": "^1.2.3",
"@project-r/styleguide": "^6.3.0",
"core-js": "^2.5.7",
"d3-array": "^1.2.1",
"d3-dsv": "^1.0.8",
"d3-format": "^1.3.0",
"d3-scale": "^2.0.0",
"d3-shape": "^1.2.0",
"d3-time-format": "^2.1.1",
"dotenv": "^6.0.0",
"downshift": "^2.0.0",
"express": "^4.16.3",
"glamor": "^2.20.40",
"isomorphic-unfetch": "^3.0.0",
"mdast-react-render": "^1.2.0",
"mime-types": "^2.1.21",
"next": "^7.0.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-textarea-autosize": "^7.0.4",
"unist-util-visit": "^1.3.1"
}
}