generated from Cornayy/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "lurk",
"version": "0.1.0",
"description": "An interpreter for the Krul language.",
"main": "./lib/src/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cornayy/lurk.git"
},
"author": "Cornayy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cornayy/lurk/issues"
},
"homepage": "https://github.com/Cornayy/lurk#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"axios": "^0.21.1"
}
}