-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "philtrejs",
"version": "0.12.2",
"description": "Block-style editor for phoenix_live_view, the frontend part",
"directories": {
"lib": "dist",
"test": "test"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf dist && node ./esbuild.js --deploy && tsc --emitDeclarationOnly --outDir dist",
"lint": "eslint src playground/js --ext .js,.ts --fix",
"test:e2e:ci": "cypress run --record",
"test:e2e": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/begedin/philtre.git"
},
"keywords": [
"phoenix",
"live",
"view",
"editor",
"block",
"notion"
],
"author": "Nikola Begedin",
"license": "ISC",
"bugs": {
"url": "https://github.com/begedin/philtre/issues"
},
"homepage": "https://github.com/begedin/philtre#readme",
"dependencies": {
"phoenix_live_view": "^0.18.3"
},
"devDependencies": {
"@types/phoenix_live_view": "^0.15.1",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"cypress-plugin-tab": "^1.0.5",
"cypress-real-events": "^1.7.2",
"cypress": "^10.11.0",
"esbuild-sass-plugin": "^2.4.0",
"esbuild": "^0.15.12",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint": "^8.26.0",
"phoenix_html": "^3.2.0",
"phoenix": "^1.6.15",
"prismjs": "^1.29.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}