-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "react-tape",
"version": "4.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": "webpack-dev-server",
"build": "NODE_ENV=production webpack -p --config webpack.prod.config.js",
"test": "babel-tape-runner ./test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-tape-runner": "^2.0.1",
"blue-tape": "^1.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.6.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.2.2",
"html-webpack-plugin": "^2.22.0",
"react-addons-test-utils": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"webpack": "^2.1.0-beta.27",
"webpack-dev-server": "^2.1.0-beta.12"
},
"dependencies": {
"aphrodite": "^1.1.0",
"react": "^15.3.1",
"react-dom": "^15.3.1"
}
}