-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.96 KB
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
{
"name": "gitcms",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": ">=12.16.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"web": "nodemon .",
"assets": "gulp",
"start": "concurrently \"npm run web\" \"npm run assets\"",
"build": "NODE_ENV=production gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpf500/gitcms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wpf500/gitcms/issues"
},
"homepage": "https://github.com/wpf500/gitcms#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.1.0",
"gulp": "^4.0.2",
"gulp-sass": "^4.0.2",
"nodemon": "^2.0.2",
"webpack": "^4.42.1",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"aws-sdk": "^2.672.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"bootstrap": "^3.4.0",
"compression": "^1.7.4",
"connect-busboy": "0.0.2",
"cropperjs": "^1.5.6",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-basic-auth": "^1.2.0",
"express-nunjucks": "^2.2.5",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"mz": "^2.7.0",
"nodegit": "^0.26.5",
"nunjucks": "^3.2.1",
"react": "^16.13.1",
"react-bootstrap": "^0.32.4",
"react-bootstrap-table": "^4.3.1",
"react-bootstrap-typeahead": "^4.1.0",
"react-day-picker": "^7.4.0",
"react-dom": "^16.13.1",
"react-fast-compare": "^3.0.2",
"react-jsonschema-form": "^1.8.1",
"react-jsonschema-form-extras": "^0.9.49",
"react-rte": "^0.16.1",
"rimraf": "^3.0.2",
"sqlite": "^3.0.6",
"ssh-keygen2": "^0.1.0",
"uuid": "^7.0.3"
},
"nodemonConfig": {
"ignore": [
"package.json",
"public/**/*",
"repos/**/*"
]
}
}