-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 851 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
{
"name": "daily-article",
"version": "0.0.0",
"description": "Daily mdn articles",
"main": "index.js",
"scripts": {
"build": "node_modules/typescript/bin/tsc",
"start": "NODE_PATH=dist node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"buildAndStart": "npm run build && npm run start",
"live": "NODE_PATH=dist nodemon -e ts --exec 'npm run buildAndStart'"
},
"author": "sodic",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"module-alias": "^2.2.2",
"typescript": "^3.9.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.3"
}
}