-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 866 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
{
"name": "marder",
"version": "0.0.0",
"main": "index.js",
"repository": "https://github.com/olivermicke/own-lang.git",
"author": "Oliver Micke <olivermicke@outlook.com>",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc -p tsconfig.production.json",
"mad": "node dist/index.js",
"lint": "tsc --noEmit && eslint '*/**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^16.17.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {}
}