-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-user-client",
"version": "1.0.0",
"description": "React.js implementation of a master/detail users form",
"scripts": {
"clean": "rimraf build",
"prestart": "npm run clean",
"start": "webpack-dev-server --progress --colors --content-base build/",
"build:bundle": "webpack",
"prebuild": "npm run clean",
"build": "npm run test && npm run build:bundle",
"test": "jest"
},
"babel": {
"presets": [
"react",
"latest",
"stage-3"
]
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/home/todd/git/react-users"
},
"keywords": [
"react",
"redux",
"client",
"master",
"detail"
],
"author": "Todd Merrill",
"license": "ISC",
"dependencies": {
"babel-core": "^6.21.0",
"babel-preset-react": "^6.5.0",
"bootstrap": "^3.3.7",
"history": "^4.6.1",
"ramda": "^0.23.0",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-logger": "^2.8.2",
"redux-thunk": "^2.2.0",
"users-api": "1.1.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.2.4",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"mocha": "^3.0.2",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.3.0",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*-test.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js"
}
}
}