-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.31 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
{
"name": "Isomorphic_lts",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"clean": "rimraf ./assets/library/react* ./assets/scripts ./assets/styles ./assets/images",
"start": "npm run watch && cross-env NODE_ENV=development nodemon bin/entry.js",
"watch": "npm-run-all clean build:react",
"build": "npm-run-all clean build:react build:pro",
"build:react": "webpack --config build/react.config.js",
"build:pro": "webpack --config build/pro.config.js",
"mock": "karma start ",
"mocha": "mocha --compilers js:babel-core/register mock/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loseyear/Isomorphic_lts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/loseyear/Isomorphic_lts/issues"
},
"homepage": "https://github.com/loseyear/Isomorphic_lts#readme",
"dependencies": {
"eslint": "^4.2.0",
"koa": "next",
"koa-onerror": "^3.1.0",
"koa-router": "next",
"koa-static": "^3.0.0",
"mini-logger": "^1.1.2",
"node-sass": "^4.5.2",
"prop-types": "^15.5.8",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"react-redux": "^5.0.4",
"react-router": "^4.1.0",
"react-router-dom": "^4.1.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serialize-javascript": "^1.3.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.0",
"css-modules-require-hook": "^4.0.6",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"koa-webpack": "next",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"react-hot-loader": "next",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"transform-runtime": "^0.0.0",
"webpack": "^2.3.3",
"webpack-hot-middleware": "^2.18.2"
}
}