forked from BrownCLPS/LingView
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.59 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
{
"name": "LingView",
"version": "1.0.0",
"description": "For presentation of audio/video/text corpus of texts. Previously using code from [ETST](http://community.village.virginia.edu/etst/).",
"main": "index.html",
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^7.0.2",
"datatables.net-dt": "^1.12.1",
"ent": "^2.2.0",
"fuse.js": "^6.4.1",
"html-es6cape": "^1.0.5",
"inquirer": "^5.0.0",
"jquery": "^3.5.0",
"prompt": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"shortid": "^2.2.8",
"shx": "^0.3.2",
"start": "^5.1.0",
"terser": "^5.27.1",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"xml2js": "^0.4.17",
"yaml": "^2.3.4"
},
"devDependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"fetch-retry": "^3.1.0",
"isomorphic-fetch": "^3.0.0",
"style-loader": "^1.1.4",
"sync-rpc": "^1.3.6",
"url-loader": "^4.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rebuild-db-online": "cross-env MISSING_MEDIA=link node preprocessing/rebuild.js",
"rebuild-db-offline": "cross-env MISSING_MEDIA=ignore node preprocessing/rebuild.js",
"webpack": "webpack-cli --config webpack.config.js",
"webpack-watch": "npm run webpack -- --watch --progress",
"bundle": "shx rm -rf bundle/ && shx mkdir -p bundle/data && shx cp -r index.html build/ css/ images/ bundle/ && shx cp -r data/media_files bundle/data/media_files",
"quick-build-online": "npm run rebuild-db-online && npm run webpack && echo \"Done! index.html is ready. To bundle LingView, run \"npm run bundle\".\"",
"quick-build-offline": "npm run rebuild-db-offline && npm run webpack && echo \"Done! index.html is ready. To bundle LingView, run \"npm run bundle\".\"",
"quick-build": "node preprocessing/rebuild.js && npm run webpack && echo \"Done! index.html is ready. To bundle LingView, run \"npm run bundle\".\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrownCLPS/LingView.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrownCLPS/LingView/issues"
},
"homepage": "https://github.com/BrownCLPS/LingView#readme",
"private": true
}