-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.8 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "saint-seiya-awakening-wiki",
"version": "1.0.54",
"description": "- Download the project in local from Github.\r - Install [Git](https://git-scm.com/download/win) on your machine and [Node.js](https://nodejs.org/en/).\r - Open the local project from an IDE and open the console.",
"main": "build.js",
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"autocompleter": "^6.0.2",
"babelify": "^10.0.0",
"body-parser": "^1.19.0",
"browserify": "^16.5.0",
"choices.js": "^9.0.1",
"cloudinary": "^1.19.0",
"cookie-parser": "^1.4.4",
"cookies-js": "^1.2.3",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"fs-extra": "^8.1.0",
"get-json": "^1.0.1",
"gulp": "^4.0.2",
"gulp-merge-json": "^1.3.1",
"helmet": "^3.21.2",
"i18n": "^0.8.5",
"jimp": "^0.9.3",
"mongodb": "^3.5.3",
"mongoose": "^5.9.2",
"path": "^0.12.7",
"promise-polyfill": "^8.1.3",
"sass": "^1.25.0",
"sortablejs": "^1.10.2",
"tinymce": "^5.2.0",
"xss-clean": "^0.1.1"
},
"scripts": {
"deploy": "npm version patch && git push heroku master",
"start": "node build.js",
"local": "concurrently -p \"{name}\" -n \"server,watcher\" -c \"gray.bgMagenta,yellow.bgBlue\" \"npm start\" \"npm run watch-js\"",
"watch-js": "start /MIN watchify js/front/views/index.js -o public/dist/js/front/views/index.js && start /MIN watchify js/back/views/index.js -o public/dist/js/back/views/index.js && start /MIN watchify js/back/views/update-cosmo.js -o public/dist/js/back/views/update-cosmo.js && start /MIN watchify js/back/views/update-skill.js -o public/dist/js/back/views/update-skill.js && start /MIN watchify js/back/views/update-saint.js -o public/dist/js/back/views/update-saint.js && start /MIN watchify js/back/views/update-news.js -o public/dist/js/back/views/update-news.js && start /MIN watchify js/back/views/manage-elements.js -o public/dist/js/back/views/manage-elements.js",
"list": "heroku builds -a saint-seiya-awakening-wiki",
"cancel": "heroku builds:cancel",
"kill": "heroku ps:kill saint-seiya-awakening-wiki",
"logs": "heroku logs --tail",
"restart": "heroku restart -a saint-seiya-awakening-wiki",
"clone": "heroku git:clone -a saint-seiya-awakening-wiki",
"load-fixtures": "node fixtures/handleFixtures.js -a true",
"remove-fixtures": "node fixtures/handleFixtures.js -e true",
"fixtures": "node fixtures/handleFixtures.js -e true -a true",
"mongodump": "mongodump --uri \"<connection_string>\" --out \"C:Users\\Tim\\Desktop\"",
"mongoexport": "mongoexport --uri \"<connection_string>\" --pretty --collection collectionName --out \"C:\\Users\\Tim\\Desktop\\collectionName.json\" --jsonArray",
"mongoimport": "mongoimport --uri uri (without retryWrites and w arguments) --collection collectionName --file fileName.json --jsonArray",
"download-file": "heroku ps:copy <file_path.file_ext> --app saint-seiya-awakening-wiki"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-arts/saint-seiya-awakening-wiki.git"
},
"keywords": [],
"author": "Atchoum + Eisa",
"license": "Proprietary",
"bugs": {
"url": "https://github.com/Tim-arts/saint-seiya-awakening-wiki/issues"
},
"homepage": "https://github.com/Tim-arts/saint-seiya-awakening-wiki#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"devDependencies": {
"concurrently": "^5.1.0",
"minimist": "^1.2.0",
"watchify": "^3.11.1"
},
"engines": {
"node": "13.x"
}
}