forked from cwrc/CWRC-GitWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.05 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
{
"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": {
"cm": "git-cz",
"build": "npm run build-cwrc-writer-base && npm run webpack-prod",
"webpack-prod": "webpack --config webpack.prod.js",
"webpack-dev": "webpack --config webpack.dev.js --debug=true --display-error-details=true",
"webpack-dev-watch": "webpack --config webpack.dev.js --debug=true --display-error-details=true --watch",
"start": "node ./server/server.js",
"server-dev": "NODE_ENV=development nodemon -L ./server/server.js",
"dev-server": "webpack-dev-server --config webpack.dev.js",
"build-cwrc-writer-base": "cd \"node_modules/cwrc-writer-base\" && npm run build",
"cwrc-writer-css-dev": "cd \"node_modules/cwrc-writer-base\" && npm run build-css",
"stats": "webpack --profile --json > build/stats.json",
"analyzer": "webpack-bundle-analyzer build/stats.json"
},
"dependencies": {
"cwrc-git-dialogs": "^2.0.0",
"cwrc-public-entity-dialogs": "^3.0.0",
"cwrc-writer-base": "^5.0.0",
"dbpedia-entity-lookup": "^0.6.1",
"express": "^4.17.1",
"geonames-entity-lookup": "^1.2.0",
"getty-entity-lookup": "^1.5.0",
"lgpn-entity-lookup": "^1.0.0",
"viaf-entity-lookup": "^1.4.1",
"wikidata-entity-lookup": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/runtime-corejs2": "^7.8.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.1.1",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"mkdirp": "^1.0.3",
"nodemon": "^2.0.2",
"path-exists-cli": "^1.0.0",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.3",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nodemonConfig": {
"watch": [
"server"
]
}
}