-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "team-work",
"version": "1.0.0",
"description": "an internal scoial network for employees of an organization",
"main": "app.js",
"scripts": {
"start": "npm run build && npm run db",
"test-init": "node ./node_modules/jasmine/bin/jasmine.js init",
"test": "jasmine build/spec/spec.js",
"coverage": "istanbul cover ./node_modules/jasmine/bin/jasmine.js build/spec/spec.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "babel app -d build",
"db": "node build/Models/poolConnection"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tos4christ/TeamWork.git"
},
"keywords": [
"social",
"network",
"organization"
],
"author": "Tos4christ",
"license": "ISC",
"bugs": {
"url": "https://github.com/tos4christ/TeamWork/issues"
},
"homepage": "https://github.com/tos4christ/TeamWork#readme",
"dependencies": {
"bcrypt": "^3.0.1",
"cloudinary": "^1.16.0",
"connect-multiparty": "^2.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1",
"request": "^2.88.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"istanbul": "^0.4.5",
"jasmine": "^3.5.0"
}
}