forked from Pterodactyls/Pterodactyls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "kuyik",
"description": "> Pithy project description",
"author": "Vinoj Govinthasamy, Ephraim Glick, Rithnarin Kong",
"license": "ISC",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"dev": "webpack -d --watch",
"build": "webpack -p",
"start-mysql": "mysql.server start",
"start-mongo": "mongod",
"start-node": "nodemon server/index.js",
"stop-mysql": "mysql.server stop",
"stop-mongo": "mongo admin --eval \"db.shutdownServer()\"",
"pomander": "curl -s https://raw.githubusercontent.com/hackreactor-labs/pomander/master/bin/install | bash",
"start": "npm-run-all --parallel start-mysql start-mongo start-node",
"stop": "npm-run-all --serial stop-mysql stop-mongo"
},
"dependencies": {
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"express-session": "^1.15.6",
"moment": "^2.19.2",
"mongoose": "^4.13.3",
"mysql": "^2.15.0",
"mysql2": "^1.5.1",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-modal": "^3.1.4",
"sequelize": "^4.22.6",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.7.2",
"dotenv": "^4.0.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor.git",
"express": "^4.16.2",
"faker": "^4.1.0",
"jsdoc": "^3.5.5",
"npm-run-all": "^4.1.2"
},
"babel": {
"presets": [
"es2015"
]
},
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Pterodactyls/Pterodactyls.git"
},
"keywords": [
"travel",
"diary",
"discovery",
"experiences"
],
"bugs": {
"url": "https://github.com/Pterodactyls/Pterodactyls/issues"
},
"homepage": "https://github.com/Pterodactyls/Pterodactyls#readme"
}