-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "virtual_piano",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"server": "nodemon server.js",
"client": "npm run start --prefix front",
"client:install": "npm install --prefix front",
"client:build": "npm run build --prefix front",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/azad-source/virtual_piano.git"
},
"author": "Azad Mamedov <azad_63_mamedov@mail.ru>",
"license": "ISC",
"bugs": {
"url": "https://github.com/azad-source/virtual_piano/issues"
},
"homepage": "https://github.com/azad-source/virtual_piano#readme",
"dependencies": {
"classnames": "^2.3.1",
"express": "^4.17.2",
"http": "^0.0.1-security",
"ws": "^8.4.2"
},
"devDependencies": {
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}