-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "MeRepresenta",
"version": "0.0.1",
"description": "Projeto destinado a ajudar eleitores brasileiros escolherem seus representantes no congresso!",
"main": "index.js",
"repository": "[email protected]:fga-gpp-mds/2017.2-DepuTinder.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"prod": "NODE_ENV=production node server.js",
"postinstall": "webpack -p",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test-coverage": "CODECLIMATE_REPO_TOKEN=bbab3c00343fdaba8c20542e3f3b98a58d84d5da8b50ba02b898603c633f40ce codeclimate-test-reporter < ./coverage/lcov.info",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"express": "^4.16.2",
"babel-core": "^*",
"babel-eslint": "^*",
"babel-loader": "*",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^*",
"babel-plugin-transform-runtime": "^6.22.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jquery": "^3.0.0",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.6",
"webpack": "*",
"webpack-dev-server": "*"
},
"dependencies": {
"axios": "^0.15.3",
"axios-fileupload": "0.0.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "*",
"codeclimate-test-reporter": "^0.5.0",
"css-loader": "^0.28.4",
"express": "^4.16.2",
"google-map-react": "^0.24.0",
"jsdom": "^8.5.0",
"lodash": "^4.17.4",
"material-ui": "^0.18.7",
"node-sass": "^4.0.0",
"nyc": "^11.2.1",
"prop-types": "^15.5.10",
"react": "^15.6.2",
"react-autosuggest": "^9.3.2",
"react-dom": "^15.6.2",
"react-facebook-login": "^3.7.2",
"react-file-uploader": "^0.3.3",
"react-files": "^2.4.3",
"react-google-maps": "^5.1.0",
"react-icons-kit": "^1.0.7",
"react-redux": "^4.4.6",
"react-router": "^3.0.3",
"react-router-dom": "^4.1.2",
"react-sanfona": "^0.4.0",
"react-sidenav": "^2.1.2",
"react-simple-sidenav": "^0.1.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.0.4",
"redux-promise": "^0.5.1",
"redux-thunk": "^*",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"sweetalert": "^2.0.8"
},
"babel": {
"presets": [
"env",
"stage-1",
"react"
],
"plugins": [
"transform-runtime"
]
}
}