-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
37
38
39
40
41
42
43
44
45
46
{
"name": "a-fake-store",
"version": "0.0.0",
"description": "",
"main": "server/index.ts",
"scripts": {
"start": "node ./build/server/index.js",
"dev": "nodemon",
"build": "./node_modules/.bin/tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "rm -rf client && ./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-kevin/a-fake-store.git"
},
"keywords": [],
"author": {
"name": "Kevin Do",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/do-kevin/a-fake-store/issues"
},
"homepage": "https://github.com/do-kevin/a-fake-store#readme",
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nanoid": "^3.1.20",
"randomstring": "^1.1.5",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"@types/randomstring": "^1.1.6",
"@types/sha.js": "^2.4.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}