-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "full-stack-test-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktruo010/full-stack-test-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ktruo010/full-stack-test-template/issues"
},
"homepage": "https://github.com/ktruo010/full-stack-test-template#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"axios": "^0.19.2",
"concurrently": "^5.2.0",
"express": "^4.17.1",
"http-status": "^1.4.2",
"lodash": "^4.17.19",
"nodemon": "^2.0.4",
"standard": "^14.3.4"
}
}