-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "rapidwiki",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "rm -rf wiki.sqlite && mocha test/tests.js",
"initialize": "npm install && mkdir views/uploads",
"single": "node index.js",
"dev": "nodemon",
"document": "rm -rf docs/ && jsdoc models/ README.md -d docs",
"lint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torchhound/rapidwiki.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/torchhound/rapidwiki/issues"
},
"homepage": "https://github.com/torchhound/rapidwiki#readme",
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"del": "^3.0.0",
"diff": "^3.5.0",
"ejs": "^2.5.8",
"express": "^4.16.3",
"express-session": "^1.15.6",
"forever": "^0.15.3",
"helmet": "^3.12.1",
"moment": "^2.22.1",
"multer": "^1.3.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.37.6",
"showdown": "^1.8.6",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jsdoc": "^3.5.5",
"mocha": "^5.1.1",
"nodemon": "^1.17.5",
"supertest": "^3.0.0",
"tape": "^4.9.0"
}
}