-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "voysec",
"version": "0.0.1",
"description": "Ticket bot",
"main": "index.js",
"engines": {
"node": "8.4.0",
"npm": "5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-coders/Voyage2-Bears-19.git"
},
"bugs": {
"url": "https://github.com/chingu-coders/Voyage2-Bears-19/issues"
},
"homepage": "https://tickybott.herokuapp.com/",
"scripts": {
"servertest":
"concurrently \"npm run test\" \"node -r dotenv/config ./server/server.js\"",
"start": "node -r dotenv/config ./server/server.js",
"dev": "concurrently \"npm run test\" \"npm run server\"",
"test": "jest --watchAll --coverage",
"build": "NODE_ENV=production webpack",
"devserver": "NODE_ENV=development webpack-dev-server",
"heroku-postbuild": "npm install && npm run build"
},
"author": "Osycon, thinktwice13, miljan-fsd, Zsolti",
"license": "MIT",
"eslintConfig": {
"extends": "airbnb-base"
},
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.0",
"dotenv": "^4.0.0",
"express": "^4.16.1",
"firebase": "^4.6.0",
"jump.js": "^1.0.2",
"normalize-scss": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-router-dom": "^4.2.2",
"request": "^2.81.0",
"request-promise-native": "^1.0.5",
"waypoints": "^4.0.1"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"node-sass": "^4.6.0",
"nodemon": "^1.12.1",
"postcss-loader": "^2.0.8",
"react-hot-loader": "^3.1.2",
"react-test-renderer": "^16.1.0",
"sass-loader": "^6.0.6",
"script-loader": "^0.7.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}