-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
76 lines (76 loc) · 1.7 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
{
"name": "purview",
"version": "0.8.3",
"description": "Server-side component framework",
"author": "Karthik Viswanathan",
"license": "MIT",
"homepage": "https://github.com/karthikv/purview",
"repository": {
"type": "git",
"url": "https://github.com/karthikv/purview"
},
"main": "dist/purview.js",
"types": "dist/purview.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^27.0.0",
"@types/jsdom": "^11.12.0",
"@types/lru-cache": "^5.1.1",
"@types/node": "^14.6.2",
"@types/sequelize": "^4.27.33",
"express": "^4.16.4",
"jest": "^27.3.1",
"jsdom": "^16.0.0",
"merge": "^2.1.1",
"nodemon": "^2.0.14",
"prettier": "^1.19.1",
"sequelize": "^6.8.0",
"sqlite3": "^5.1.4",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^3.9.7",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@types/ws": "^8.5.0",
"css-tree": "^1.1.3",
"csstype": "^3.0.9",
"dev-null": "^0.1.1",
"inline-style-expand-shorthand": "^1.3.0",
"io-ts": "1.4.2",
"lru-cache": "^6.0.0",
"nanoid": "^3.2.0",
"snabbdom": "^0.7.3",
"ws": "^8.18.0"
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"nodemonConfig": {
"watch": [
"dist"
]
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.+_test\\.tsx?$",
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"node"
]
}
}