-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "distributed-scrum-retro-client",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"react-addons-test-utils": "^15.4.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"cookie": "^0.3.1",
"firebase": "^3.6.9",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"uuid-v4": "^0.1.0"
},
"scripts": {
"lint": "eslint src/** test/**",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js --recursive ./test",
"start": "webpack-dev-server --hot --inline --port 3000 --host 0.0.0.0",
"webpack": "webpack --watch"
}
}