-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ontouml-server",
"version": "0.0.1",
"description": "Javascript library utility for manipulating OntoUML models.",
"license": "Apache-2.0",
"repository": "github:OntoUML/ontouml-server",
"main": "build/src/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "npm-run-all -p format:watch start:watch",
"start:watch": "nodemon index.ts",
"format:watch": "onchange '**/*.ts' -- prettier --write {{changed}}",
"clean": "rimraf coverage build tmp",
"build": "rm -rf ./dist && npm run build:js",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:watch": "TS_NODE_FILES=true tsc -w -p tsconfig.release.json",
"lint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"test": "jest --coverage",
"test:clean": "jest --clearCache",
"test:watch": "jest --watch",
"docs": "node_modules/.bin/apidoc -i api/routes/ -o ./docs/",
"pre-push": "npm run lint && npm test"
},
"_moduleAliases": {
"@configs": "src/configs",
"@error": "src/error",
"@routes": "src/routes",
"@utils": "src/utils"
},
"dependencies": {
"@babel/runtime": "^7.13.7",
"@types/express": "^4.17.11",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"custom-env": "^2.0.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"memoizee": "^0.4.15",
"nodemon": "^1.19.4",
"ontouml-js": "^0.4.1",
"regenerator-runtime": "^0.13.7",
"tslib": "~1.10.0",
"uniqid": "^5.3.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.0",
"@types/jest": "^24.9.1",
"@types/node": "^10.17.54",
"apidoc": "^0.19.1",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^4.1.0",
"dotenv": "^8.2.0",
"grpc_tools_node_protoc_ts": "^2.5.11",
"husky": "^3.1.0",
"jest": "^24.9.0",
"module-alias": "^2.2.2",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.1",
"prettier": "~1.18.2",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^9.1.1",
"tslint": "~5.19.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.17.0",
"typescript": "^4.2.2"
}
}