forked from LES-3-FANTASTIQUES-WCS/slack-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "slack-clone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node .",
"start:watch": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "db-migrate up --config db-migrate-config.js --env pg",
"build-webapp": "cd webapp && npm install && npm run build",
"build": "npm run migrate & npm run build-webapp"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"dotenv": "^8.1.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-react-hooks": "^2.1.2",
"express": "^4.17.1",
"pg": "^7.12.1",
"pg-native": "^3.0.0",
"react-router-dom": "^5.1.2",
"styled-components": "^5.0.0-beta.9"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"nodemon": "^1.19.3",
"prettier": "^1.18.2",
"prettierrc": "0.0.0-5"
}
}