-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "cob",
"version": "0.0.1",
"description": "COB",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rcline/cob.git"
},
"author": "Ryan Cline <cline.ryan@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rcline/cob/issues"
},
"homepage": "https://github.com/rcline/cob#readme",
"engines": {
"node": "^8.9.4",
"yarn": "^1.5.1"
},
"scripts": {
"build": "yarn build:app && yarn build:server",
"build:app": "webpack",
"build:app:watch": "yarn build:app --progress --watch",
"build:server": "babel src -d dist",
"build:server:watch": "yarn build:server -w",
"dev": "nodemon dist/server.js",
"prestart": "check-engines",
"start": "node dist/server.js",
"refresh": "rm -rf node_modules && yarn install"
},
"dependencies": {
"classnames": "^2.2.5",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.3",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"recompose": "^0.27.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.7",
"check-engines": "^1.5.0",
"css-loader": "^0.28.11",
"style-loader": "^0.21.0"
}
}