forked from rlopez-tiempodev/ReactJS-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.37 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
{
"name": "reactTV",
"version": "1.0.0",
"description": "Tiempo Development Intro to ReactJS + Flux Course.",
"main": "index.js",
"scripts": {
"stats": "webpack --profile --json > stats.json",
"start": "webpack-dev-server",
"deploy": "clear && gh-pages -d build",
"build": "clear && webpack",
"test": "clear && node_modules/.bin/karma start --single-run --no-auto-watch karma.conf.js",
"test:watch": "clear && node_modules/.bin/karma start --auto-watch --no-single-run karma.conf.js",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --cache"
},
"keywords": [],
"author": "Ronier López <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.20.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.19.0",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lolex": "^1.5.0",
"mocha": "^2.5.3",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"purecss": "^0.6.0",
"purifycss-webpack-plugin": "^2.0.3",
"react-addons-perf": "^15.1.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.13.0",
"webpack-validator": "^2.1.2"
},
"dependencies": {
"es6-promise": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"whatwg-fetch": "^1.0.0"
}
}