-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.02 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
{
"name": "c2c-chat",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:c2c-project/c2c-chat.git",
"author": "DevelopmentByDavid <david@yrbookit.com>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"start": "concurrently - k \"npm run server --scripts-prepend-node-path\" \"npm run client --scripts-prepend-node-path\"",
"serve": "node server/dist/bin/www.js",
"jsdoc": "./node_modules/.bin/jsdoc -c ./.jsdoc.json"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^4.1.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"jsdoc": "^3.6.4"
}
}