-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 4.5 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "./node_modules/.bin/nodemon src/index.js",
"lint": "eslint --max-warnings 0 --ext .js --ext .jsx .",
"lint:fix": "yarn lint --fix --cache || true",
"prettier": "prettier --single-quote es6 --write './**/*.{js,jsx}'",
"test": "npm run test:backend",
"test:backend:migrations": "node ./node_modules/db-migrate/bin/db-migrate down -c 99 --config ./src/configs/config.json --migrations-dir ./src/migrations -e test && node ./node_modules/db-migrate/bin/db-migrate up --config ./src/configs/config.json --migrations-dir ./src/migrations -e test",
"test:backend:test": "node ./node_modules/mocha/bin/mocha test spec ./src/unit-tests --recursive --timeout 10000",
"test:backend": "npm run test:backend:migrations && npm run test:backend:test",
"dev:frontend": "webpack-dev-server --config client/config/webpack.dev.js --content-base client --inline --hot --port 3001",
"build:frontend": "webpack --config client/config/webpack.prod.js --progress --profile --bail",
"mup": "node ./node_modules/db-migrate/bin/db-migrate up --config ./src/configs/config.json --migrations-dir ./src/migrations -e dev",
"mdown": "node ./node_modules/db-migrate/bin/db-migrate down -c 99 --config ./src/configs/config.json --migrations-dir ./src/migrations -e dev",
"mdown-prod": "node ./node_modules/db-migrate/bin/db-migrate down -c 99 --config ./src/configs/config.json --migrations-dir ./src/migrations -e production",
"mup-prod": "node ./node_modules/db-migrate/bin/db-migrate up --config ./src/configs/config.json --migrations-dir ./src/migrations -e production",
"postinstall": "npm run mup-prod && npm run build:frontend",
"create-docker-db": "docker build -t koriifua/mysql-react-native . && docker run -p 3306:3306 -d koriifua/mysql-react-native"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasinkevych/react-native-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vasinkevych/react-native-node/issues"
},
"homepage": "https://github.com/vasinkevych/react-native-node#readme",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@koa/cors": "^2.2.3",
"@types/d3": "^5.7.2",
"apollo-boost": "^0.4.3",
"array-flat-polyfill": "^1.0.1",
"auth0-js": "^9.11.2",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"bootstrap-css-only": "^4.1.1",
"classnames": "^2.2.5",
"d3": "^5.14.2",
"dotenv": "7.0.0",
"fast-crc32c": "^2.0.0",
"firebase-admin": "^8.7.0",
"fuse.js": "^3.4.5",
"googleapis": "^40.0.0",
"graphql": "^14.4.2",
"jwks-rsa": "^1.6.0",
"koa": "2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-graphql": "^0.8.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-morgan": "^1.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa2-router": "^1.0.6",
"mysql": "^2.16.0",
"mysqldump": "^3.1.0",
"nodemailer": "^5.1.1",
"pm2": "3.4.0",
"prettier": "1.17.1",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "16.8.4",
"react-apollo": "^3.1.3",
"react-bootstrap": "^1.0.0-beta.10",
"react-dom": "16.8.4",
"react-highlight-words": "^0.16.0",
"react-router-dom": "^5.0.0",
"strip-ansi": "^5.2.0",
"winston": "^3.2.1",
"winston-loggly-bulk": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"css-loader": "^2.1.1",
"db-migrate": "^0.11.6",
"db-migrate-mysql": "^1.1.10",
"eslint": "^6.1.0",
"eslint-config-koa": "^2.0.2",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"http-proxy-middleware": "^0.19.1",
"mocha": "^6.1.4",
"nodemon": "^1.18.10",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
}
}