-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pocket-cms",
"version": "1.0.14",
"main": "src/pocket.js",
"license": "MIT",
"description": "A pocket sized CMS as an express middleware",
"repository": "patrixr/pocket-cms",
"author": "Patrick R",
"keywords": [
"schema",
"cms",
"api",
"web",
"admin"
],
"engines" : {
"node" : ">=8.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@vue/component-compiler-utils": "^2.3.0",
"axios": "^0.18.0",
"babel-core": "^7.0.0-0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"element-ui": "^2.4.11",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"mocha": "^5.0.1",
"mongod": "^2.0.0",
"node-sass": "^4.8.2",
"nodemon": "^1.14.12",
"parcel-bundler": "^1.10.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"supertest": "^3.0.0",
"url-loader": "^0.6.2",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1",
"vue-router": "^3.0.1",
"vue-store": "^0.3.1-moved",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1"
},
"scripts": {
"serve": "node bin/serve.js",
"serve:watch": "nodemon bin/serve.js",
"test": "NODE_ENV=test mocha --colors -r test/setup --recursive test/*.test.js test/**/*.test.js",
"test:watch": "NODE_ENV=test mocha --bail --colors --watch -r test/setup --recursive test/*.test.js test/**/*.test.js",
"start": "npm run serve",
"document": "esdoc",
"build": "parcel build src/admin/frontend/index.html --out-dir dist/admin",
"dev": "PARCEL_DEV=true parcel src/admin/frontend/index.html --out-dir dist/admin",
"prepublish": "npm run build"
},
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.2",
"busboy": "^0.2.14",
"express": "^4.16.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"mmmagic": "^0.5.0",
"modifyjs": "^0.3.1",
"mongodb": "^3.1.7",
"nedb": "^1.8.0",
"pocket-schema": "^1.1.0",
"q": "^1.5.1",
"systeminformation": "^3.52.7",
"uniqid": "^5.0.3",
"uuid": "^3.2.1"
}
}