forked from jamesfiltness/tuneify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
65
66
67
68
69
70
71
72
{
"name": "Tunefiy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start:client",
"start:client": "webpack-dev-server",
"build": "rm -rf ./dist && webpack -p --config ./webpack.production.config.js",
"test": "mocha --compilers js:babel-register test/helper app/**/spec.js",
"coverage": "node_modules/.bin/nyc --reporter=text --reporter=lcov --require babel-core/register --all node_modules/.bin/mocha test/helper app/**/spec.js"
},
"author": "James Filtness",
"license": "MIT",
"dependencies": {
"auth0-lock": "10.7.3",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.13.2",
"babel-register": "6.11.6",
"classnames": "2.2.5",
"config": "1.24.0",
"es6-promise": "3.3.1",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"isomorphic-fetch": "2.2.1",
"jwt-decode": "2.1.0",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-redux": "4.4.5",
"react-router": "2.6.1",
"react-router-redux": "4.0.5",
"redux": "3.5.2",
"redux-logger": "2.8.1",
"redux-thunk": "2.1.0",
"throttleit": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.13.2",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"chai": "3.5.0",
"chai-enzyme": "0.6.0",
"cheerio": "0.22.0",
"css-loader": "0.26.1",
"enzyme": "2.6.0",
"eslint": "3.3.0",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.1.0",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.28.0",
"jsdom": "9.8.3",
"mocha": "3.1.2",
"node-sass": "4.5.0",
"nodemon": "1.11.0",
"npm-run-all": "4.0.1",
"nyc": "10.0.0",
"react-addons-test-utils": "15.4.1",
"sass-loader": "5.0.1",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"webpack": "2.2.1",
"webpack-bundle-analyzer": "2.2.3",
"webpack-dev-server": "1.16.3"
}
}