-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 KB
/
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
39
40
41
42
{
"name": "tsmodules",
"version": "1.1.0",
"description": "TypeScript project template to import modules without extension, and modules with default exports that use node built-ins",
"keywords": [
"typescript",
"modules",
"es modules",
"esnext",
"influxdb",
"apollo-server"
],
"license": "MIT",
"author": "dandv",
"type": "module",
"main": "run.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -f *.js *.js.map",
"lint": "eslint *.ts",
"start": "node --experimental-specifier-resolution=node --harmony -r source-map-support/register run.js",
"test": "node --harmony node_modules/.bin/jest"
},
"dependencies": {
"influx": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-plugin-jest": "^23.18.2",
"jest": "^26.1.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=13.0.0"
}
}