-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 1.88 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
75
76
77
78
79
80
81
{
"name": "@synapsejs/synapse",
"version": "1.0.7",
"description": "Realtime API Library",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"files": [
"build/lib",
"build/lib.browser"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.browser.json",
"test": "jest",
"doc": "typedoc",
"start": "NODE_ENV=production node ./build/test/index.js",
"dev": "NODE_ENV=development nodemon",
"deploy": "git add . && npm version $1 && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/synapse"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/synapse/issues"
},
"homepage": "https://synapsejs.org",
"dependencies": {
"express": "^4.17.1",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/mongoose": "^5.7.21",
"@types/node": "^14.0.5",
"@types/supertest": "^2.0.9",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express-ws": "^4.0.0",
"jest": "^26.0.1",
"mongoose": "^5.9.16",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.1",
"typedoc": "^0.17.8",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.9.3",
"uuid": "^8.1.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"txs",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
}
},
"nodemonConfig": {
"watch": [
"test",
"synapse"
],
"ext": "ts",
"exec": "ts-node ./test/index.ts"
}
}