This repository was archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"name": "ReactTodosTutorial",
"version": "0.0.0",
"description": "這是 React 系列教學中的簡易範例 TodosApp",
"main": "build/bundle.js",
"dependencies": {
"flux": "^2.1.1",
"flux-constants": "^0.2.2",
"immutable": "^3.7.5",
"react": "^0.13.3",
"react-redux": "^3.0.1",
"redux": "^3.0.2",
"redux-devtools": "^2.1.5",
"shortid": "^2.2.2"
},
"devDependencies": {
"babel-jest": "*",
"babel-loader": "*",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "^5.8.25",
"bootstrap": "*",
"bootstrap-webpack": "*",
"css-loader": "*",
"express": "^4.13.3",
"file-loader": "*",
"imports-loader": "*",
"jest-cli": "*",
"jquery": "*",
"node-sass": "*",
"radium": "^0.13.8",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"sass-loader": "*",
"style-loader": "*",
"url-loader": "*",
"webpack": "*",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.3.0"
},
"scripts": {
"start": "babel-node devServer.js",
"build": "NODE_ENV=production webpack --config webpack.prod.config.js",
"test": "jest"
},
"author": {
"name": "Jason Chung",
"email": "shiningjason1989@gmail.com"
},
"license": "MIT",
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"globals": {
"SCRIPTS": "<rootDir>/src/scripts"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/node_modules/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}