forked from raseward14/automation-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.13 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
{
"name": "my-coordinates",
"version": "1.0.0",
"description": "A react app supported by typescript.",
"main": "./server/src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "cd server && npm run start",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\" \"cd server && npm run start\"",
"client": "cd client && npm run start",
"develop": "concurrently -k \"cd server && npm run build && npm run serve\" \"cd client && npm run start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/raseward14/my-coordinates.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/raseward14/my-coordinates/issues"
},
"homepage": "https://github.com/raseward14/my-coordinates#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"https-proxy-agent": "^7.0.2",
"if-env": "^1.0.4",
"net": "^1.0.2",
"node-fetch": "^2.7.0"
}
}