-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 3.46 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
{
"name": "cwrc-git-writer",
"version": "0.0.0",
"description": "xml editing and rdf annotation using github as document store",
"keywords": [
"xml",
"rdf",
"editor",
"annotation"
],
"homepage": "https://github.com/cwrc/CWRC-GitWriter",
"bugs": {
"url": "https://github.com/cwrc/CWRC-GitWriter/issues"
},
"license": "GPL-2.0",
"contributors": [
"Andrew MacDonald <[email protected]>",
"James Chartrand <[email protected]>",
"Luciano Frizzera <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/cwrc/CWRC-GitWriter.git"
},
"scripts": {
"start": "env-cmd -e production node ./server/server.js",
"middleware-server-dev": "env-cmd -e development nodemon -L ./server/index.mjs",
"dev-server": "npm run cwrc-writer-editor-css-dev & webpack-dev-server --config webpack.dev.js",
"webpack-dev": "npm run build-cwrc-writer-base && webpack --config webpack.dev.js --debug=true --display-error-details=true",
"webpack-dev-watch": "env-cmd -e development npm run cwrc-writer-editor-css-dev & webpack --config webpack.dev.js --debug=true --display-error-details=true --watch",
"cwrc-writer-editor-css-dev": "cd \"node_modules/cwrc-writer-base\" && npm run build-editor-css-dev",
"build": "npm run build-cwrc-writer-base && npm run webpack-prod && npm run mockup-ui:copy-files",
"build-cwrc-writer-base": "cd \"node_modules/cwrc-writer-base\" && npm run build",
"webpack-prod": "webpack --config webpack.prod.js",
"stats": "webpack --profile --json > stats.json",
"analyzer": "webpack-bundle-analyzer stats.json",
"mockup-ui:copy-files": "copyfiles -u 1 mockup-ui/* mockup-ui/**/* build/mockup-ui",
"cm": "git-cz"
},
"dependencies": {
"cwrc-git-dialogs": "^4.0.0",
"cwrc-public-entity-dialogs": "^4.0.0",
"cwrc-writer-base": "^8.2.0",
"dbpedia-entity-lookup": "^2.0.0",
"env-cmd": "^10.1.0",
"express": "^4.18.1",
"geonames-entity-lookup": "^2.1.0",
"getty-entity-lookup": "^2.3.2",
"lgpn-entity-lookup": "^2.2.0",
"viaf-entity-lookup": "^2.1.0",
"wikidata-entity-lookup": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/runtime-corejs2": "^7.19.2",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.5",
"copy-webpack-plugin": "^6.4.1",
"copyfiles": "^2.4.1",
"css-loader": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"file-loader": "^6.2.0",
"git-cz": "^4.9.0",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^4.5.2",
"image-webpack-loader": "^7.0.1",
"less": "^4.1.3",
"less-loader": "^7.3.0",
"less-watch-compiler": "^1.16.3",
"mini-css-extract-plugin": "^0.11.3",
"nodemon": "^2.0.20",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"prettier": "^2.7.1",
"style-loader": "^1.3.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.3",
"webpack-dev-server": "^3.11.3",
"webpack-hot-middleware": "^2.25.2",
"webpack-merge": "^5.4.0",
"webpackbar": "^4.0.0"
}
}