This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.23 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
70
{
"name": "quiver-node-reader",
"version": "0.6.1",
"description": "Quiver Notebook reader powered by NodeJS",
"repository": "https://github.com/Gulivertx/quiver-node-reader.git",
"author": {
"name": "Cédric Bapst",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "concurrently -k \"webpack --watch --mode development\" \"ENV=development node server.js\"",
"build": "rm -Rf app && webpack --config build/webpack.prod.js --progress --profile --bail -p --mode production",
"analyse": "rm -Rf app && NODE_ENV=analyse webpack --config build/webpack.prod.js --mode production"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.3",
"moment": "^2.22.2",
"morgan": "^1.9.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.7.1",
"@types/react": "^16.4.11",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"concurrently": "^3.6.1",
"cross-fetch": "^2.2.2",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"loadable-components": "^2.2.3",
"material-design-iconic-font": "^2.2.0",
"node-sass": "^4.9.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-highlight": "^0.12.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.4.0",
"reboot.css": "^1.0.4",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
}
}