forked from Sefaria/Sefaria-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"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 node/server.js",
"daemon": "forever start node/server.js",
"test": "./run reader/browsertest/run_local.py",
"build": "npm run build:jsx",
"build:jsx": "babel static/js/s2.jsx > static/js/s2.js",
"build:webpack": "webpack — config node/webpack-production.config.js — progress — profile — colors",
"dev-server": "webpack-dev-server — config node/webpack-dev-server.config.js — progress — colors — port 2992 — inline",
"hot-dev-server": "webpack-dev-server — config node/webpack-hot-dev-server.config.js — hot — progress — colors — port 2992 — inline",
"setup": "npm install -g nodemon; npm install -g babel-cli; npm install -g forever",
"b": "npm run build",
"t": "npm run test"
},
"dependencies": {
"jquery": "^2.2.0",
"extend": "^3.0.0",
"classnames": "^2.2.5",
"cheerio": "^0.20.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"redis": "^2.6.0-2",
"request": "^2.72.0",
"express": "^4.x",
"body-parser": "^1.15.1",
"cookie-parser": "^1.4.2",
"querystring": "^0.2.0",
"striptags": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-watch": "^2.0.0",
"babel-plugin-transform-remove-console": "^6.8.0",
"nodemon": "^1.9.2",
"webpack": "^1.0.0"
},
"babel": {
"presets": ["es2015", "react"],
"compact": false,
"plugins": ["transform-remove-console"]
},
"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"
}