forked from Stanford-W3Lab/Lecture-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1011 Bytes
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
{
"name": "lecture-2",
"version": "0.1.0",
"private": true,
"scripts": {
"javascript": "node --require dotenv-safe/config src/index.js dotenv_config_path=.env",
"typescript": "ts-node-dev --project tsconfig.json --require dotenv-safe/config src/index.ts dotenv_config_path=.env",
"build": "tsc --project tsconfig.json",
"start": "node --require dotenv-safe/config dist/index.js dotenv_config_path=.env"
},
"dependencies": {
"dotenv-safe": "^8.2.0",
"prompt": "^1.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.2",
"@types/prompt": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}