-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
{
"name": "arek-starter",
"version": "1.0.0",
"main": "index.html",
"scripts": {
"build": "NODE_ENV=production webpack --config ./webpack.production.config.js",
"build-dev": "NODE_ENV=development webpack --config ./webpack.config.js",
"server": "NODE_ENV=production node dist/server.js",
"server-dev": "NODE_ENV=development node --inspect server-dev.js",
"start": "npm run build && npm run server",
"start-dev": "npm run build-dev & npm run server-dev"
},
"author": "Arkadiusz Zalewski",
"license": "ISC",
"engines": {
"node": "6.4.0"
},
"dependencies": {
"apollo-boost": "^0.1.12",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-webpack-aliases": "^1.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-app": "^3.1.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"isomorphic-unfetch": "^2.1.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-apollo": "^2.1.9",
"react-dom": "^16.3.1",
"react-dom-confetti": "0.0.8",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.1.1",
"redux": "^3.5.2",
"sqlite3": "^4.0.2",
"style-loader": "^0.22.1",
"styled-components": "^3.2.5",
"svg-sprite-loader": "^3.8.0",
"webpack": "^4.12.0",
"webpack-command": "^0.4.1",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.17.5",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
}
}