-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
101 lines (101 loc) · 3.82 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-speed-coding-code",
"version": "1.0.0",
"description": "Companion code for React Speed Coding book",
"main": "index.js",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"lint": "NODE_ENV=lint webpack-dev-server --config webpack.lint.config.js",
"cover": "NODE_ENV=test babel-node node_modules/.bin/babel-istanbul cover _mocha -- --require test/helpers/browser.js test/**/*.spec.js --reporter dot || true",
"test": "NODE_ENV=test npm run elint && npm run slint && npm run test:mocha",
"test:mocha": "NODE_ENV=test mocha test/helpers/browser.js test/**/*.spec.js --compilers js:babel-core/register",
"build": "NODE_ENV=production webpack --config webpack.prod.config.js",
"build:details": "NODE_ENV=production webpack --config webpack.prod.config.js --display-modules",
"profile": "NODE_ENV=production webpack --config webpack.prod.config.js --profile --json > profile.json",
"elint": "eslint . --ext .js --ext .jsx --cache",
"elint:table": "eslint . --ext .js --ext .jsx --cache --format table || true",
"elint:summary": "eslint . --ext .js --ext .jsx --cache --format 'node_modules/eslint-friendly-formatter' || true",
"slint": "stylelint ./app/styles/**/*.css ./app/style.css --syntax scss",
"storybook": "start-storybook -p 9001 -s ./app/public",
"storybuild": "build-storybook -s ./app/public -o ./.storybook/build",
"src:summary": "sloc app/",
"src:detail": "sloc -d -f cli-table -k total,source,comment app/"
},
"author": "Manav Sehgal",
"license": "MIT",
"engines": {
"node": ">=5.3.0 <6.2.0"
},
"dependencies": {
"firebase": "^3.0.5",
"marked": "^0.3.5",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-select": "^0.9.1",
"redux": "^3.5.2",
"rumble-charts": "^1.0.7"
},
"devDependencies": {
"@kadira/storybook": "^1.28.1",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.8.0",
"babel-loader": "^6.2.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2017": "^1.4.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"browser-sync": "^2.12.5",
"browser-sync-webpack-plugin": "^1.0.1",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"clean-webpack-plugin": "^0.1.8",
"copy-webpack-plugin": "^2.1.1",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-friendly-formatter": "^2.0.4",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"graceful-fs": "^4.1.4",
"html-minifier": "^1.5.0",
"html-webpack-plugin": "^2.15.0",
"jsdom": "^9.1.0",
"json-loader": "^0.5.4",
"jsx-ast-utils": "^1.2.1",
"mocha": "^2.4.5",
"normalize.css": "^4.1.1",
"postcss-easy-import": "^1.0.1",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"pug": "^2.0.0-alpha6",
"pug-load": "^2.0.0",
"react-addons-perf": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"sloc": "^0.1.10",
"style-loader": "^0.13.0",
"stylelint": "^6.3.3",
"stylelint-config-standard": "^7.0.0",
"stylelint-webpack-plugin": "^0.2.0",
"suitcss-utils-display": "^1.0.2",
"suitcss-utils-text": "^1.0.0",
"url-join": "^1.1.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}