-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "idai-field-core",
"description": "Field Core",
"version": "1.4.0",
"license": "Apache-2.0",
"author": "German Archaeological Institute",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p .",
"build:watch": "tsc -watch -p .",
"test": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"test:watch": "nodemon --ext js --exec 'jasmine JASMINE_CONFIG_PATH=test/jasmine.json'"
},
"dependencies": {
"rxjs": "~6.5.4",
"tsfun": "5.5.38",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/runtime": "^7.13.10",
"@types/express": "^4.17.13",
"@types/jasmine": "3.5.0",
"@types/node": "^12.12.38",
"@types/pouchdb": "6.4.0",
"@types/uuid": "^8.3.0",
"express": "^4.17.1",
"express-pouchdb": "^4.2.0",
"jasmine": "2.5.2",
"jasmine-core": "~3.5.0",
"node-gyp": "^10.1.0",
"nodemon": "^2.0.12",
"pouchdb-node": "9.0.0",
"rimraf": "2.6.2",
"typescript": "~5.4.5"
}
}