This repository has been archived by the owner on Apr 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.19 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "viestinta",
"version": "0.0.1",
"description": "Placeholder",
"main": "src/server/app.js",
"scripts": {
"dev": "grunt && sequelize db:migrate && sequelize db:seed:all && node src/server/app.js",
"test": "node src/server/app.js && nyc --check-coverage --lines 60 mocha src/test/**/**.js && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"start": "node src/server/app.js",
"lint": "standard ./server/* ./client/*",
"webpack": "./node_modules/.bin/webpack",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Viestinta/viestinta.git"
},
"keywords": [
"node",
"nodejs",
"react",
"reactjs",
"socket",
"socket.io",
"socketio",
"education",
"NTNU",
"pekka"
],
"author": "frozenlight,teatimes,odgaard,weedle1912",
"license": "ISC",
"bugs": {
"url": "https://github.com/Viestinta/viestinta/issues"
},
"homepage": "https://viestinta.eu",
"dependencies": {
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.1",
"body-parser": "^1.16.0",
"chai": "^4.1.1",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"express-session": "^1.15.0",
"helmet": "^3.5.0",
"highcharts": "^5.0.10",
"istanbul": "^0.4.5",
"material-ui-datatables": "^0.18.2",
"mocha": "^3.2.0",
"nyc": "^11.1.0",
"passport": "^0.4.0",
"passport-openid-connect": "^0.1.0",
"pg": "^7.1.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"redis": "^2.7.1",
"sequelize": "^4.5.0",
"socket.io-client": "^2.0.2",
"socket.io-redis": "^5.1.0",
"uglify-js": "^3.0.27",
"webpack": "^3.5.5",
"winston": "^2.3.1",
"snyk": "^1.37.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"chai": "^4.1.1",
"check-dependencies": "^1.0.1",
"enzyme": "^2.7.1",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"material-ui": "^0.19.0",
"mocha": "^3.2.0",
"mock-socket": "^7.0.0",
"nyc": "^11.1.0",
"react-addons-test-utils": "^15.5.1",
"should": "^11.2.0",
"sinon": "^3.2.1",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"standard": "^10.0.2",
"supertest": "^3.0.0",
"webpack": "^3.5.5"
},
"nyc": {
"exclude": [
"src/test/**",
"src/server/app.js",
"src/server/database/controllers/index.js",
"src/server/database/models/index.js"
]
},
"babel": {
"presets": [
"es2015",
"react"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"standard": {
"globals": [
"it",
"describe",
"io",
"should"
]
},
"snyk": true
}