-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.36 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "peerquery-beta",
"version": "3.17.0",
"description": "peer to peer collaboration powered by steem",
"main": "./src/app.js",
"private": true,
"scripts": {
"lintfix": "./node_modules/.bin/eslint \"**/*.js\" --fix",
"lint": "./node_modules/.bin/eslint \"**/*.js\"",
"lintstaged": "./node_modules/.bin/lint-staged",
"test": "npm run lintfix && mocha --timeout 40000 --exit",
"build": "webpack",
"dbuild": "set NODE_ENV=debug && webpack",
"qbuild": "set NODE_ENV=development && webpack",
"pbuild": "set NODE_ENV=production && webpack",
"serve": "node ./src/app.js",
"nserve": "nodemon ./src/app.js",
"dserve": "set NODE_ENV=debug && webpack && npm run serve",
"qserve": "set NODE_ENV=development && webpack && npm run serve",
"pserve": "set NODE_ENV=production && webpack && npm run serve",
"stage": "webpack && npm test && node ./src/app.js",
"start": "node ./src/app.js",
"prettier": "./node_modules/.bin/prettier r --config .prettierrc --write \"**/*.js*\"",
"pretty-quick": "./node_modules/.bin/pretty-quick --staged",
"kill": "taskkill /f /im node.exe"
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerquery/beta.git"
},
"keywords": [
"peerquery",
"p2p",
"steem",
"collaboration"
],
"author": "dzivenu",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerquery/beta/issues"
},
"homepage": "https://github.com/peerquery/beta#readme",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/runtime": "^7.0.0",
"body-parser": "^1.18.2",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dotenv": "^6.0.0",
"dsteem": "^0.9.0",
"ejs": "^2.6.1",
"event-stream": "^4.0.1",
"express": "^4.16.3",
"express-mongo-sanitize": "^1.3.2",
"express-rate-limit": "^2.12.2",
"fs": "0.0.1-security",
"helmet": "^3.13.0",
"hpp": "^0.2.2",
"jquery": "^3.3.1",
"jsonwebtoken": "^8.3.0",
"markup-builder": "^3.4.0",
"markup-tools": "^2.10.0",
"mongoose": "^5.2.7",
"req-sanitizer": "^0.2.1",
"semantic-ui-calendar": "0.0.8",
"semantic-ui-css": "^2.3.3",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.13",
"sitemap": "^2.0.1",
"steemconnect": "^2.0.0",
"timeago.js": "^3.0.2",
"tui-editor": "^1.2.6",
"util": "^0.11.0"
},
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-react": "^7.11.1",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.11",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^0.4.3",
"mocha": "^5.2.0",
"only-if-changed-webpack-plugin": "0.0.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"style-loader": "^0.22.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}