-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) 路 3.17 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) 路 3.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "docker-express-postgresql-react-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"backend": "nodemon -L --debug=5858 index.js & webpack --watch",
"frontend": "webpack-dev-server --host 0.0.0.0 --port 4000 --inline --hot --watch --content-base ./public",
"run:server:tests": "mocha --require tests/scripts/mocha_runner tests/server/test-index.js",
"build:frontend:tests": "webpack --config webpack.test.config.js",
"run:frontend:tests": "mocha --require tests/scripts/mocha_runner ./tests/tests-bundle.js",
"db:migrate": "./node_modules/.bin/sequelize --migrations-path=server/migrations --models-path=server/models --config=server/config/config.json db:migrate",
"db:seed": "./node_modules/.bin/sequelize --migrations-path=server/migrations --models-path=server/models --seeders-path=server/seeders --config=server/config/config.json db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ortee/docker-express-postgresql-react-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ortee/docker-express-postgresql-react-starter/issues"
},
"homepage": "https://github.com/Ortee/docker-express-postgresql-react-starter#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-cli": "^1.1.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-node": "^2.1.2",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"imports-loader": "^0.6.5",
"jsdom": "^9.6.0",
"json-loader": "^0.5.4",
"mocha": "^3.1.1",
"node-sass": "^3.10.1",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"redux-logger": "^2.7.0",
"sass-loader": "^4.0.2",
"sequelize-cli": "^2.4.0",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-history-api-fallback": "^2.0.0",
"file-loader": "^0.9.0",
"node-uuid": "^1.4.7",
"npm": "^3.10.8",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"pg-promise": "^5.3.4",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"reactstrap": "^3.5.0",
"redux": "^3.6.0",
"redux-devtools-extension": "^1.0.0",
"redux-thunk": "^2.1.0",
"sequelize": "^3.24.3",
"sequelize-cli": "^2.4.0",
"superagent": "^2.3.0",
"winston": "^2.2.0"
}
}