-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
30
31
32
33
34
35
36
{
"name": "audiophile",
"version": "1.0.0",
"description": "ecommerce website for audio products",
"main": "index.js",
"scripts": {
"client:dev": "npm run dev --prefix client",
"client:build": "npm run build --prefix client",
"client:start": "npm run start --prefix client",
"server:dev": "npm run start:dev --prefix server",
"server:prod": "npm run start:prod --prefix server",
"server:build": "npm run build --prefix server",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/funmilolajire/audiophile.git"
},
"keywords": [
"ecommerce",
"audio",
"products",
"frontendmentor"
],
"author": "Funmilola O.",
"license": "MIT",
"bugs": {
"url": "https://github.com/funmilolajire/audiophile/issues"
},
"homepage": "https://github.com/funmilolajire/audiophile#readme",
"dependencies": {
"concurrently": "^6.3.0",
"react-icons": "^4.3.1",
"sanitize.css": "^12.0.1"
}
}