This repository was archived by the owner on Dec 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.8 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.8 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=development && webpack --entry ./app/public/js/index.js --output-filename bundle.min.js --output-path ./app/public/js ",
"start": "yarn run init-db && ./node_modules/nodemon/bin/nodemon.js --exec babel-node ./src/server.js",
"server": "./node_modules/nodemon/bin/nodemon.js --exec babel-node ./src/server.js",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"client": "cd client && yarn start && cd -",
"sequelize-skeleton": "./node_modules/sequelize-cli/lib/sequelize init:src/models; ./node_modules/sequelize-cli/lib/sequelize init:config",
"init-db": "/usr/bin/mysql --defaults-extra-file=.my < .sql"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"-": "^0.0.1",
"apollo-boost": "^0.4.7",
"apollo-server-express": "^2.11.0",
"body-parser": "^2.0.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^15.0.0",
"graphql-import": "^1.0.1",
"graphql-tag": "^2.10.3",
"kind-of": "^6.0.3",
"lodash": "^4.17.15",
"mysql2": "^3.9.8",
"sequelize": "^6.29.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.0.4",
"nodemon": "^2.0.2",
"sequelize-cli": "^5.5.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}