forked from Sefaria/Sefaria-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.47 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "sefaria-web",
"version": "1.0.0",
"description": "Server for rendering React components for Sefaria, a library of Jewish texts.",
"config": {
"port": "4040"
},
"main": "node/server.js",
"scripts": {
"start": "nodemon static/bundles/server/server-bundle.js",
"daemon": "forever start -a -p ./ -l log/forever/forever.log -o log/forever/out.log -e log/forever/err.log -w --watchDirectory log/forever/timeout static/bundles/server/server-bundle.js ",
"test": "./run reader/browsertest/run_local.py",
"test-one": "./run reader/browsertest/run_one_local.py",
"jest": "jest --watchAll --notify",
"jest-travis": "jest",
"jest-gha": "jest --json --outputFile=/home/runner/jestResults.json",
"build": "webpack --config ./node/webpack.config.js",
"build-prod": "webpack --config ./node/webpack.config.js --mode='production'",
"build-client": "webpack --config ./node/webpack.client.js",
"build-server": "webpack --config ./node/webpack.server.js",
"build-diffPage": "webpack --config ./node/webpack.diffPage.js",
"build-explore": "webpack --config ./node/webpack.explore.js ",
"build-sefaria": "webpack --config ./node/webpack.sefaria.js",
"build-timeline": "webpack --config ./node/webpack.timeline.js ",
"watch": "webpack --config ./node/webpack.config.js --progress -w --stdin",
"watch-server": "webpack --config ./node/webpack.server.js --progress -w --stdin",
"watch-client": "webpack --config ./node/webpack.client.js --progress -w --stdin",
"watch-client-server": "webpack --config ./node/webpack.client-server.js --progress -w --stdin",
"watch-diffPage": "webpack --config ./node/webpack.diffPage.js --progress -w --stdin",
"watch-explore": "webpack --config ./node/webpack.explore.js --progress -w --stdin",
"watch-sefaria": "webpack --config ./node/webpack.sefaria.js --progress -w --stdin",
"watch-timeline": "webpack --config ./node/webpack.timeline.js --progress -w --stdin",
"setup": "npm install -g nodemon babel-cli forever",
"b": "npm run build",
"w": "npm run watch-client-server",
"wc": "npm run watch-client",
"wa": "npm run watch",
"t": "npm run test",
"to": "npm run test-one",
"postinstall": "patch-package"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.15.1",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.2",
"css-modules-require-hook": "^4.2.3",
"deep-merge": "^1.0.0",
"diff-match-patch": "^1.0.0",
"express": "4.x",
"express-winston": "^4.1.0",
"extend": "^3.0.0",
"humanize-duration": "^3.17.0",
"is-hotkey": "^0.1.6",
"jquery": "^2.2.0",
"jquery-ui": "1.12.1",
"jquery.cookie": "^1.4.1",
"jquery.scrollto": "^2.1.2",
"js-cookie": "^2.2.1",
"patch-package": "^6.2.2",
"prop-types": "^15.6.0",
"querystring": "^0.2.0",
"react": "^16.8.6",
"react-class": "^3.2.2",
"react-dom": "^16.8.6",
"react-image-crop": "^8.3.1",
"react-jsonschema-form": "^1.0.0",
"redis": "^2.8.0",
"request": "^2.72.0",
"sanitize-html": "^1.16.3",
"slate": "0.62.0",
"slate-history": "0.62.0",
"slate-hyperscript": "0.62.0",
"slate-react": "0.62.0",
"source-list-map": "^2.0.0",
"striptags": "^2.1.1",
"sync-exec": "^0.6.2",
"webpack-node-externals": "^1.7.2",
"webpack-sources": "^1.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-watch": "^2.0.0",
"css-loader": "^3.2.0",
"jest": "^24.9.0",
"nodemon": "^1.9.2",
"on-build-webpack": "^0.1.0",
"source-map-support": "^0.4.15",
"style-loader": "^1.0.0",
"webpack": "^4.40.2",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.9"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"compact": false,
"plugins": []
},
"repository": {
"type": "git",
"url": "https://github.com/Sefaria/Sefaria-Project"
},
"bugs": {
"url": "https://github.com/Sefaria/Sefaria-Project/issues"
},
"keywords": [
"torah",
"talmud",
"free culture"
],
"license": "GPL-3.0"
}