-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.6 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
{
"name": "reactoricus.jakubniewczas.pl",
"author": "Jakub Niewczas",
"version": "0.0.1",
"description": "React / Unity3d game",
"license": "MIT",
"engines": {
"node": "11.5.0",
"yarn": "1.13.0"
},
"scripts": {
"dev:frontend": "webpack-dev-server --config ./src/webpack-frontend.config.js --port 3000",
"dev:backend": "DATABASE_URL=sqlite:./db/data/dev.db PORT=8081 DEBUG=true webpack --watch --config ./src/webpack-backend.config.js",
"dev:db:migrate": "DATABASE_URL=sqlite:./db/data/dev.db node ./src/scripts/db-migrate.js",
"prod:frontend": "NODE_ENV=production webpack --config ./src/webpack-frontend.config.js",
"prod:backend": "NODE_ENV=production webpack --config ./src/webpack-backend.config.js",
"prod:db:migrate": "node ./src/scripts/db-migrate.js",
"build": "yarn run prod:frontend && yarn run prod:backend",
"heroku-postbuild": "yarn run build",
"server": "NODE_ENV=production node ./backend/bundled-server-runner.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-react-css-modules": "^5.2.3",
"blueimp-canvas-to-blob": "^3.14.0",
"css-loader": "~2.x.x",
"es6-promise": "~4.x.x",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^3.0.1",
"form-serialize": "^0.7.2",
"fs-extra": "^7.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon-webpack-plugin": "^4.0.8",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prop-types": "^15.6.0",
"react": "~16.8.x",
"react-dom": "~16.8.x",
"resolve-url-loader": "^3.0.1",
"sass-loader": "^7.1.0",
"sqlite3": "^4.0.6",
"store2": "^2.7.1",
"style-loader": "~0.23.x",
"uglifyjs-webpack-plugin": "^2.1.1",
"uuid": "^3.3.2",
"webpack": "~4.29.x",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "~3.1.x",
"wolfy87-eventemitter": "^5.2.6"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"express": "^4.16.4",
"multer": "^1.4.1",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.3.0",
"umzug": "^2.2.0"
}
}