-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "chrisandrews",
"version": "0.1.0",
"description": "A website to show React, Redux, and Node.",
"main": "index.js",
"scripts": {
"serve": "webpack && node server.js",
"build": "webpack",
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./tests/helper.js 'tests/**/*.js'",
"watch-tests": "npm run test -- --watch"
},
"author": "Chris Andrews",
"license": "ISC",
"dependencies": {
"babel-preset-stage-1": "^6.16.0",
"css-loader": "^0.25.0",
"css-modules-require-hook": "^4.0.5",
"express": "^4.15.4",
"lodash": "^4.16.6",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-icons": "^2.2.1",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"style-loader": "^0.13.1",
"youtube-api-search": "0.0.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^3.1.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"webpack": "2.7.0",
"webpack-dev-server": "^1.16.2"
}
}