forked from isTravis/frankenbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.64 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "frankenbook",
"version": "1.0.0",
"description": "Frankenstein - Open",
"main": "server.js",
"author": "PubPub Team <pubpub@media.mit.edu>",
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "https://github.com/pubpub/pubpub.git"
},
"scripts": {
"build": "rm -rf dist && webpack --config webpack/webpackConfigProd.js && cp -R static/* dist && cp _redirects-prod dist/_redirects",
"prod": "npm run build && serve ./dist -s",
"lint": "eslint app webpack stories .storybook",
"start": "webpack-dev-server --env.mode=app --config webpack/webpackConfigDev.js",
"storybook": "start-storybook -p 9001 -c .storybook -s ./static",
"convert": "node static/convert.js",
"convert-editor": "node static/convertToEditor.js",
"convert-annotations": "node static/convertAnnotations.js"
},
"dependencies": {
"@blueprintjs/core": "^1.25.1",
"@pubpub/editor": "^4.1.1",
"@storybook/addon-options": "^3.2.6",
"@storybook/react": "^3.2.8",
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"bourbon": "^4.3.4",
"copy-webpack-plugin": "^4.0.1",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.5",
"dateformat": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"himalaya": "^0.2.12",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"node-sass": "^4.5.2",
"normalize.css": "^7.0.0",
"object-hash": "^1.1.8",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.6.0",
"react-code-splitting": "^1.2.0",
"react-dom": "^15.5.4",
"react-g-analytics": "^0.4.2",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"react-timeago": "^3.4.3",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.5",
"serve": "^6.0.6",
"style-loader": "^0.18.2",
"sw-precache-webpack-plugin": "^0.11.0",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"engines": {
"node": "8.2.1"
}
}