-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "react-express-scaffolding",
"version": "0.1.0",
"description": "Scaffolding for react and express",
"main": "src/index.js",
"scripts": {
"build:prod": "NODE_ENV=production webpack --progress --config webpack.config.js",
"lint": "standard",
"start": "NODE_ENV=production PORT=80 node server/main.js",
"start:dev": "NODE_ENV=development nodemon server/main.js",
"start:debug": "NODE_ENV=development nodemon --inspect server/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/idchain/lottery.git"
},
"author": "Nicola Squartini e Federico Squartini",
"license": "MIT",
"homepage": "https://bitbucket.org/idchain/lottery#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"progress-bar-webpack-plugin": "^1.10.0",
"sass-loader": "^6.0.6",
"standard": "^10.0.2",
"style-ext-html-webpack-plugin": "^3.4.1",
"style-loader": "^0.18.2",
"webpack": "^2.7.0",
"webpack-config-utils": "^2.3.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"apollo-server": "^0.3.3",
"body-parser": "^1.17.2",
"bootstrap": "^4.0.0-alpha.6",
"create-react-class": "^15.6.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"graphql": "^0.10.5",
"graphql-server-express": "^1.0.4",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.1.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.30",
"react": "^15.6.1",
"react-apollo": "^1.4.8",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-transition-group": "^1.2.0",
"reactstrap": "^4.8.0"
}
}