-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "ribbon",
"version": "2019.5.11",
"description": "A platform to share your stories.",
"main": "dist/ribbon.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "./node_modules/.bin/eslint app/*",
"eslint_fix": "./node_modules/.bin/eslint app/* --fix",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./npm-debug.log,./config,./public,./themes,./admin,./plugins,./combined.log --copy-files",
"dev": "nodemon ribbon.js --exec babel-node",
"setup": "npm install && npm run build && node dist/install.js",
"upgrade": "npm install && npm run build && node dist/update.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jtpox/ribbon.git"
},
"author": "Jian Ting",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"express": "^4.16.3",
"express-fileupload": "^0.4.0",
"express-useragent": "^1.0.12",
"jstransformer-markdown-it": "^2.1.0",
"moment": "^2.22.2",
"mongoose": "^5.2.7",
"mongoose-paginate": "^5.0.3",
"multer": "^1.3.1",
"prompt": "^1.0.0",
"pug": "^2.0.3",
"showdown": "^1.8.6",
"slugify": "^1.3.1",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.5.3",
"chai": "^4.2.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2",
"sinon": "^7.1.1"
},
"nodemonConfig": {
"ignore": [
"themes/*",
"admin/*",
"public/*",
"dist/*",
"plugins/*"
]
}
}