-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "react-news",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/echenley/react-news.git"
},
"devDependencies": {
"autoprefixer": "^6.1.0",
"babel-core": "^6.1.2",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.0.1",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-2": "^6.1.2",
"babel-runtime": "^6.2.0",
"chai": "^3.4.0",
"chai-equal-jsx": "^1.0.8",
"classnames": "^2.2.0",
"css-loader": "^0.23.0",
"eslint": "^1.8.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.7.1",
"firebase": "^2.3.1",
"history": "^1.13.0",
"html-webpack-plugin": "^1.6.2",
"istanbul-instrumenter-loader": "^0.1.3",
"jsdom": "^7.0.2",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.1.2",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^1.1.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"md5": "^2.0.0",
"mocha": "^2.3.3",
"moment": "^2.10.6",
"node-sass": "^3.4.1",
"null-loader": "^0.1.1",
"phantomjs": "^1.9.18",
"postcss-loader": "^0.8.0",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2",
"react-addons-update": "^0.14.2",
"react-dom": "^0.14.2",
"react-hot-loader": "^1.3.0",
"react-router": "^1.0.0-rc3",
"reflux": "^0.3.0",
"sass-loader": "^3.1.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"svg-inline-loader": "^0.4.0",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.12.1"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"start": "rm -rf build/* && node server.js",
"build": "rm -rf build/* && ./node_modules/.bin/webpack",
"dist": "rm -rf dist/* && ./node_modules/.bin/webpack -p --config webpack.production.config.js",
"lint": "./node_modules/.bin/eslint src/",
"test": "./node_modules/.bin/karma start ./test/karma.conf.js --reporters mocha,coverage",
"test:watch": "./node_modules/.bin/karma start ./test/karma.conf.js --no-single-run --reporters mocha"
}
}