-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.81 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
{
"name": "react-fiddles",
"version": "0.0.1",
"description": "Playing around with React",
"scripts": {
"prestart": "babel-node tools/startMessage.js",
"start": "npm-run-all --parallel test:watch open:src lint:watch",
"open:src": "babel-node tools/srcServer.js",
"lint": "node_modules/.bin/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"
},
"repository": {
"type": "git",
"url": "https://github.com/PotterRafed/react-fiddles"
},
"author": "Potter Rafed",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"colors": "^1.3.1",
"compression": "^1.7.3",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"eslint": "^5.2.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-watch": "^4.0.2",
"eventsource-polyfill": "^0.9.6",
"expect": "^23.4.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"jsdom": "^11.12.0",
"mocha": "^5.2.0",
"nock": "^9.4.3",
"npm-run-all": "^4.1.3",
"open": "^0.0.5",
"prettier": "^1.15.1",
"prettier-eslint-cli": "^4.7.1",
"react-addons-test-utils": "^15.6.2",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "4.1.3",
"jquery": "3.3.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"toastr": "^2.1.4"
}
}