-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 2.31 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
{
"name": "react-notes",
"version": "1.0.0",
"engines": {
"npm": "6.14.12",
"node": "14.16.1"
},
"description": "React Notes App - a MERN-based notes web-app with authorisation, live synchronization and functional user interface",
"main": "server/app.js",
"scripts": {
"start": "npm run prod",
"full-install": "npm run server:install && npm run client:install",
"deploy": "npm run full-install && npm run client:build",
"server:start-dev": "(cd server && npm run start-dev)",
"server:start-prod": "(cd server && npm run start-prod)",
"server:install": "(cd server && npm install)",
"client:start-dev": "(cd client && npm run start)",
"client:build": "(cd client && npm run build)",
"client:install": "(cd client && npm install)",
"dev": "cross-env NODE_ENV=dev concurrently \"npm run server:start-dev\" \"npm run client:start-dev\"",
"prod": "npm run server:start-prod",
"prod:predeploy": "npm run deploy && npm run prod",
"prod:prebuild": "npm run client:build && npm run prod",
"test": "(echo you can also run 'test' in folders 'client' or 'server') && (concurrently \"cd client && npm test\" \"cd server && npm test\")",
"heroku-postbuild": "npm run deploy",
"mongo-ubuntu:update": "(sudo apt update && sudo apt upgrade)",
"mongo-ubuntu:prepare": "(cd mongo/Ubuntu && chmod +x mongo_ubuntu_setup.sh && chmod +x mongo_ubuntu_install.sh)",
"mongo-ubuntu:setup": "(cd mongo/Ubuntu && ./mongo_ubuntu_setup.sh)",
"mongo-ubuntu:full-setup": "npm run mongo-ubuntu:update && npm run mongo-ubuntu:prepare && npm run mongo-ubuntu:setup",
"mongo-ubuntu:start": "(cd mongo/Ubuntu && ./mongo_ubuntu_install.sh)",
"mongo-windows:start": "(cd mongo/Windows && start mongo_win_install.bat)",
"doc": "jsdoc -c jsdoc.json",
"doc:open": "start ../react-notes-docs/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxchistt/react-notes.git"
},
"keywords": [
"react",
"mern",
"notes"
],
"author": "Maxim Chistyakov <max.chistt@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxchistt/react-notes/issues"
},
"homepage": "https://github.com/maxchistt/react-notes#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"jsdoc": "^3.6.7"
}
}