-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 959 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
{
"name": "ts_node_template",
"version": "1.0.0",
"description": "A typescript node js template for VSC with some batteries included. ",
"main": "index.js",
"scripts": {
"start": "tsc & node index.js",
"build": "tsc",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"TypeScript",
"node",
"js",
"template"
],
"author": "Kenton Bocock aka GinjaCoder",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.61",
"@types/moment": "^2.13.0",
"@types/node": "^7.0.12",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"npm": "^8.11.0",
"prettier": "2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.29.4"
}
}