forked from fc-io/react-tape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 968 Bytes
/
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
{
"name": "react-tape",
"version": "1.0.0",
"description": "A boilerplate for React using Tape for testing.",
"author": "Fredrik Carlsson <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fc-io/react-tape"
},
"scripts": {
"start": "node webpack.dev.server.hot.js",
"test": "babel-tape-runner ./test/**/*",
"lint": "eslint .",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"babel-tape-runner": "^1.2.0",
"blue-tape": "^0.1.10",
"css-loader": "^0.16.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.0",
"html-webpack-plugin": "^1.6.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.3",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"react": "^0.13.3"
}
}