-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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-examples",
"version": "1.0.0",
"description": "Minimal example project for React",
"repository": "https://github.com/mikeperri/react-examples.git",
"main": "index.js",
"scripts": {
"build": "webpack --display-error-details",
"start": "webpack-dev-server --content-base dist/",
"test": "$(npm bin)/mocha src/testSetup.js src/components/**/*.test.jsx --compilers js:babel-core/register",
"test-watch": "$(npm bin)/mocha src/testSetup.js src/components/**/*.test.jsx --compilers js:babel-core/register --watch --watch-extensions jsx"
},
"author": "Mike Perri",
"license": "ISC",
"dependencies": {
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"html-webpack-plugin": "^2.19.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.13.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-enzyme": "^0.4.2",
"enzyme": "^2.3.0",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"webpack-dev-server": "^1.14.1"
}
}