-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
58
59
60
61
62
63
64
{
"name": "wp-r-template",
"version": "1.0.0",
"description": "ES2015+ Babel, Webpack and React project template",
"scripts": {
"build": "webpack --progress --colors",
"check": "flow check",
"lint": "eslint .",
"pretest": "npm run lint && npm run check",
"start": "set BABEL_ENV=hmr; export BABEL_ENV=hmr; babel-node ./server/index.js",
"test": "mocha --compilers js:babel-register app/**/*-test.js --recursive",
"test:d": "mocha --compilers js:babel-register app/**/*-test.js --recursive --debug-brk",
"test:w": "chokidar '**/*.js' -i 'node_modules' -c 'npm run --silent test'"
},
"repository": {
"type": "git",
"url": "https://github.com/briandipalma/wp-r-template.git"
},
"keywords": [
"webpack",
"React",
"ES2015",
"Babel"
],
"author": "Brian Di Palma",
"license": "ISC",
"bugs": {
"url": "https://github.com/briandipalma/wp-r-template/issues"
},
"homepage": "https://github.com/briandipalma/wp-r-template#readme",
"devDependencies": {
"@briandipalma/eslint-config-bdp": "^7.0.0",
"babel-cli": "~6.10.1",
"babel-core": "~6.10.4",
"babel-eslint": "~6.1.0",
"babel-loader": "~6.2.4",
"babel-plugin-react-transform": "~2.0.2",
"babel-preset-es2015": "~6.9.0",
"babel-preset-react": "~6.11.1",
"babel-preset-stage-3": "~6.11.0",
"babel-register": "~6.9.0",
"chokidar-cli": "1.2.0",
"css-loader": "0.23.1",
"empty": "0.10.1",
"enzyme": "^2.2.0",
"eslint": "2.13.1",
"eslint-plugin-react": "~5.2.2",
"express": "~4.14.0",
"flow-bin": "0.27.0",
"mocha": "~2.5.1",
"react-addons-test-utils": "^15.0.0",
"react-transform-catch-errors": "~1.0.2",
"react-transform-hmr": "~1.0.4",
"redbox-react": "~1.2.2",
"style-loader": "0.13.1",
"webpack": "~1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "~2.12.0"
},
"dependencies": {
"react": "~15.1.0",
"react-dom": "~15.1.0"
}
}