-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.92 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
{
"name": "lang-mate",
"version": "0.0.1",
"description": "The application gives the users the ability to make match with other languages native speakers to practice their languages.",
"main": "/src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start:server": "NODE_ENV=development nodemon server",
"start:client": "cd client && npm run start",
"dev": "NODE_ENV=development concurrently \"npm run start:server\" \"npm run start:client\"",
"dev:server": "NODE_ENV=development nodemon server",
"start": "NODE_ENV=production node ./server/index.js",
"heroku-postbuild": "NODE_ENV=production cd client && npm install && npm run build",
"test": "NODE_ENV=test node test/index.test.js | tap-spec",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && NODE_ENV=development npm run dev",
"kill-both": "npm run kill && cd client && fuser -k 3000/tcp",
"coverage": "nyc npm run test",
"project-i": "npm install && cd client && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/lang-mate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/lang-mate/issues"
},
"homepage": "https://github.com/GSG-G7/lang-mate#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"compression": "^1.7.4",
"concurrently": "^4.1.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"pg": "^7.12.1",
"yup": "^0.27.0"
},
"devDependencies": {
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0"
}
}