-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.17 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
{
"name": "react-environment-setup",
"version": "1.0.0",
"description": "Initial set up for a React environment.",
"main": "index.js",
"scripts": {
"prestart":"babel-node tools/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch",
"open:src": "babel-node tools/srcServer.js",
"lint": "esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"test": "mocha --reporter progress tools/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"author": "Richard Husted Jr.",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.9.1",
"bootstrap": "^3.3.7",
"jquery": "^3.1.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"toastr": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-display-name": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.11.6",
"colors": "^1.1.2",
"compression": "^1.6.2",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^3.2.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-react": "^5.2.2",
"eslint-watch": "^2.1.14",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.20.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"npm-run-all": "^2.3.0",
"open": "0.0.5",
"react-addons-test-utils": "^15.3.0",
"redux-immutable-state-invariant": "^1.2.3",
"redux-mock-store": "^1.1.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"repository": {
"type": "git",
"url": "https://github.com/rhusted1982/react-environment-setup.git"
}
}