-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.16 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.16 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
{
"name": "@media-network/media-webapp",
"version": "1.1.0",
"description": "A web app that allows tenants register and configure their MediaNetwork CDN presets.",
"main": "index.js",
"repository": "git@github.com:media-network/media-webapp.git",
"author": "LongLH <d@dapps.me>",
"license": "MIT",
"devDependencies": {
"concurrently": "3.5.1",
"eslint": "4.19.1",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.9.1",
"eslint-plugin-security": "1.4.0",
"nodemon": "1.17.5"
},
"scripts": {
"start": "npm run dev",
"install:all": "npm i && npm run install:client && npm run install:server",
"install:client": "cd client/ && npm i && cd ..",
"install:server": "cd server/ && npm i && cd ..",
"dev": "concurrently --raw \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm start && cd ..",
"dev:server": "cd server && npm start && cd ..",
"lint": "eslint --ext js --ext jsx .",
"lint:watch": "nodemon --watch client --watch server --watch .eslintrc.js --ext js,jsx --delay 1000ms --exec \"npm run lint\""
},
"dependencies": {}
}