-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 3.07 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-koa-app",
"version": "1.0.0",
"description": "scaffold for create web app with react and koa",
"main": "server/index.js",
"engines": {
"node": "8.9.0",
"pm2": "2.7.0"
},
"scripts": {
"start": "npm run server & npm run dev",
"server": "NODE_ENV=development nodemon -w config -w server server/server.js",
"dev": "nodemon -w config -w tools tools/server.js",
"test": "jest --forceExit",
"lint": "eslint . --fix",
"precommit": "lint-staged && npm test",
"deploy": "sh tools/deploy.sh"
},
"lint-staged": {
"*.js": [
"npm run lint"
]
},
"jest": {
"verbose": true,
"notify": true,
"collectCoverage": true,
"testEnvironment": "node",
"modulePaths": [
"<rootDir>/server"
],
"roots": [
"<rootDir>/__tests__"
],
"testPathIgnorePatterns": [
"__tests__/(fixtures|__mocks__)/"
],
"coverageReporters": [
"html",
"text",
"text-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joe3Ray/react-koa-app.git"
},
"keywords": [
"react",
"koa"
],
"author": "JoeRay61",
"license": "MIT",
"bugs": {
"url": "https://github.com/Joe3Ray/react-koa-app/issues"
},
"homepage": "https://github.com/Joe3Ray/react-koa-app#readme",
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"css-loader": "^0.28.8",
"dev-ip": "^1.0.1",
"eslint": "^4.15.0",
"eslint-config-joeray61": "^2.0.1",
"execa": "^0.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"fs-extra": "^5.0.0",
"happypack": "^4.0.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"lint-staged": "^6.0.0",
"nodemon": "^1.14.9",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"style-loader": "^0.19.1",
"supertest": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.5.8",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"app-module-path": "^2.2.0",
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"glob": "^7.1.2",
"immutable": "^3.8.2",
"js-yaml": "^3.10.0",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^7.3.0",
"koa-static": "^4.0.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}