forked from team-alloy/payMe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.39 KB
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
{
"name": "payMe",
"version": "1.0.0",
"description": "##### Information",
"main": "server/index.js",
"engine": {
"node": "8.11.2"
},
"scripts": {
"start": "nodemon --inspect server/index.js ",
"react:dev": "webpack -d --watch",
"test": "jest",
"migrate": "knex migrate:latest --knexfile database/knexfile.js",
"build": "webpack --mode production",
"postinstall": "npm run build",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romcar/payMe.git"
},
"keywords": [],
"author": "Erwin Carrasquilla <rommel.carrasquilla@gmail.com>, Mealear Khiev <> , Donny De Rojas <>, Kenny Le <>",
"license": "ISC",
"bugs": {
"url": "https://github.com/team-alloy/payMe/issues"
},
"homepage": "https://github.com/team-alloy/payMe#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.2.0",
"superagent": "^3.8.3",
"supertest": "^3.1.0",
"valuelink": "^1.5.5",
"webpack": "^4.12.1",
"webpack-cli": "^2.1.4"
},
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"bookshelf": "^0.13.3",
"coveralls": "^3.0.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"jquery": "^3.3.1",
"knex": "^0.14.3",
"material-ui": "^0.20.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-tap-event-plugin": "^3.0.3",
"redux": "^4.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"request": "^2.87.0",
"semantic-ui": "^2.3.2",
"semantic-ui-react": "^0.81.1",
"sinon": "^6.0.1",
"snyk": "^1.88.2",
"twilio": "^3.17.4",
"twilio-video": "^1.10.0"
},
"snyk": true
}