-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
43
44
{
"name": "cfg-normal-forms",
"version": "0.0.1",
"description": "An algorithm that transforms any context free grammar to its Chomsky's normal form",
"main": "./src/app.ts",
"scripts": {
"prestart": "tsc",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gdaguilarc/CFG-Normal-Forms.git"
},
"author": "David Aguilar",
"license": "GLP-3.0",
"bugs": {
"url": "https://github.com/gdaguilarc/CFG-Normal-Forms/issues"
},
"homepage": "https://github.com/gdaguilarc/CFG-Normal-Forms#readme",
"dependencies": {
"body-parser": "^1.19.0",
"combinations": "^0.1.1",
"cors": "^2.8.4",
"del": "^3.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"lokijs": "^1.5.6",
"multer": "^1.3.0",
"ts-node-dev": "^1.0.0-pre.32"
},
"devDependencies": {
"@types/del": "^4.0.0",
"@types/express": "^4.16.1",
"@types/lokijs": "^1.5.2",
"@types/multer": "^1.3.7",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0",
"typescript": "^3.4.5"
}
}