forked from aligos/favorite-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "favorite-quotes",
"version": "1.0.0",
"description": "An example React application for an Egghead.io series",
"repository": {
"type": "git",
"url": "git+https://github.com/trevordmiller/favorite-quotes.git"
},
"author": "Trevor D. Miller <[email protected]> (www.trevordmiller.com)",
"main": "./src/index",
"scripts": {
"test": "mocha './src/**/*.spec.js' --compilers js:babel-core/register",
"test:watch": "npm test -- --watch",
"serve": "webpack-dev-server --content-base dist/ --no-info",
"dev": "parallelshell 'npm run test:watch' 'npm run serve'"
},
"dependencies": {
"classnames": "2.2.1",
"react": "0.14.3",
"react-colors-picker": "2.2.1",
"react-dom": "0.14.3",
"react-redux": "3.1.0",
"redux": "3.0.2"
},
"devDependencies": {
"babel-core": "6.1.4",
"babel-loader": "6.1.0",
"babel-preset-es2015": "6.1.4",
"babel-preset-react": "6.1.4",
"babel-preset-stage-2": "6.1.2",
"css-loader": "0.23.0",
"expect": "1.12.2",
"expect-jsx": "2.1.2",
"file-loader": "0.8.4",
"mocha": "2.3.3",
"parallelshell": "2.0.0",
"react-addons-test-utils": "0.14.3",
"style-loader": "0.13.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
}
}