-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
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
65
66
67
68
{
"name": "react-webpack-template",
"version": "0.0.1",
"description": "React/Webpack template for modern web apps",
"license": "MIT",
"scripts": {
"test": "webpack --config ./config/test.js && mocha ./.tmp/test.bundle.js --require ./test/setup.js",
"test:watch": "npm run test --watch",
"start": "node ./bin/www",
"build": "webpack",
"postinstall": "webpack",
"lockdown": "rm -rf node_modules npm-shrinkwrap.json && npm install --no-optional && npm shrinkwrap --dev"
},
"author": "Joah Gerstenberg @The Neverwoods, LLC",
"repository": {
"type": "git",
"url": "git@github.com:the-neverwoods/react-webpack-template.git"
},
"dependencies": {
"async": "2.1.4",
"babel-core": "6.17.0",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-1": "6.16.0",
"batch": "0.5.3",
"body-parser": "1.14.2",
"css-loader": "0.25.0",
"cssobjects-loader": "0.4.1",
"dotenv": "2.0.0",
"express": "4.14.0",
"json-loader": "0.5.4",
"node-sass": "3.10.1",
"path": "0.12.7",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-ga": "2.1.2",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"react-tap-event-plugin": "2.0.0",
"redux": "3.6.0",
"redux-localstorage": "0.4.1",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"webpack": "2.2.0-rc.3",
"webpack-uglify-js-plugin": "1.1.9"
},
"devDependencies": {
"chai": "3.5.0",
"chai-enzyme": "0.6.0",
"cheerio": "0.22.0",
"enzyme": "2.6.0",
"eslint": "3.10.0",
"eslint-loader": "1.6.1",
"eslint-plugin-prefer-object-spread": "1.1.0",
"eslint-plugin-react": "6.7.0",
"fs": "0.0.1-security",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"mocha": "3.1.1",
"react-addons-test-utils": "15.4.2",
"sinon": "2.0.0-pre.4",
"xmlhttprequest": "1.8.0"
},
"engine": "node 6.3.0"
}