You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
{ |
|
"name": "website-staging-server", |
|
"version": "1.0.0", |
|
"main": "index.js", |
|
"license": "MIT", |
|
"scripts": { |
|
"dev": "nodemon index.ts", |
|
"build": "tsc", |
|
"start": "node index.js" |
|
}, |
|
"devDependencies": { |
|
"@types/express": "^4.17.11", |
|
"@types/node": "^12", |
|
"dotenv": "^10.0.0", |
|
"nodemon": "^2.0.7", |
|
"ts-node": "^10.1.0", |
|
"typescript": "^4.2.4" |
|
}, |
|
"dependencies": { |
|
"express": "^4.17.1" |
|
} |
|
}
|
|
|