forked from pawelmalak/snippet-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 990 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
35
36
37
38
{
"name": "snippet-hub",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"init:client": "npm install --prefix=client",
"init:server": "npm install",
"init": "npm i && cd client && npm i",
"dev:client": "npm start --prefix=client",
"dev:server": "nodemon",
"dev": "npm-run-all -n --parallel dev:**",
"build:client": "npm run build --prefix=client",
"build:clear": "rm -rf build",
"build:tsc": "tsc",
"build": "npm-run-all -n build:**"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.2",
"@types/validator": "^13.6.3",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/umzug": "^2.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2",
"umzug": "^2.3.0"
}
}