-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 755 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 755 Bytes
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
{
"name": "typeface-analyzer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "cd server && npm start",
"start:client": "cd client && npm start",
"dev": "concurrently \"npm run dev:server\" \"npm run start:client\"",
"dev:server": "cd server && npm run dev",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"mapbox-gl": "^3.11.1",
"react-map-gl": "^8.0.4"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}