-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (105 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (105 loc) · 2.97 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
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
{
"name": "react-zhihu-daily",
"version": "0.0.0",
"private": true,
"author": "Canaan",
"license": "ISC",
"description": "",
"scripts": {
"dev": "node ./server/dev_server",
"build": "webpack --config config/webpack.build.js && node ./server/build_server",
"test": "jest"
},
"dependencies": {
"@types/history": "^4.6.0",
"@types/prop-types": "^15.5.1",
"@types/react-dom": "15",
"@types/react-redux": "^5.0.13",
"@types/react-router-dom": "^4.2.1",
"@types/react-router-redux": "^5.0.10",
"@types/react-test-renderer": "15",
"axios": "^0.16.2",
"body-parser": "~1.13.1",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"ejs": "~2.3.2",
"enzyme-adapter-react-15": "^1.0.5",
"express": "~4.13.0",
"history": "^4.7.2",
"morgan": "~1.6.1",
"prop-types": "^15.5.10",
"react": "15",
"react-dom": "15",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-test-renderer": "15",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"serve-favicon": "~2.3.0",
"url-loader": "^0.6.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.4",
"@types/jest": "^21.1.6",
"@types/enzyme-adapter-react-15": "^1.0.1",
"awesome-typescript-loader": "^3.2.3",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"ejs-loader": "^0.3.0",
"enzyme": "^3.2.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"raw-loader": "^0.5.1",
"redux-mock-store": "^1.3.0",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"ts-jest": "^21.2.3",
"typescript": "^2.5.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.12.0"
},
"main": "index.js",
"repository": "git+https://github.com/Echohzy/react-zhihu-daily.git",
"bugs": {
"url": "https://github.com/Echohzy/react-zhihu-daily/issues"
},
"homepage": "https://github.com/Echohzy/react-zhihu-daily#readme",
"jest": {
"transform": {
"^.+\\.(ts|tsx|js)$": "ts-jest"
},
"moduleNameMapper": {
".*.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.mock.js",
".*.(css|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
],
"setupFiles": [
"<rootDir>/setup.tsx"
],
"globals": {
"DEVELOPMENT": true
}
}
}