-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "react-presentation",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"jquery": "^2.2.1",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-dom": "^0.14.7",
"react-markdown": "^2.0.1",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react-router-bootstrap": "^0.20.1",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"redux-localstorage": "^0.4.0",
"screenfull": "^3.0.0",
"webfontloader": "^1.6.22"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"bootstrap-loader": "^1.0.9",
"bootstrap-sass": "^3.3.6",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"eslint": "^2.3.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^4.2.0",
"expect": "^1.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jsdom": "^8.1.0",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"postcss": "^5.0.19",
"postcss-loader": "^0.8.1",
"react-addons-test-utils": "^0.14.7",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "webpack-dev-server --history-api-fallback --no-info --open",
"build": "cross-env NODE_ENV=production webpack --config webpack-production.config.js --optimize-minimize --progress --profile --colors && cp src/index.html dist/",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register --require ./test/setup.js"
}
}