-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "scribouilli",
"version": "1.0.0",
"description": "scribouilli, c'est cool",
"main": "index.js",
"scripts": {
"start": "echo 'http://localhost:8080/' && http-server -a localhost -s -c-1",
"ts": "tsc && echo 'Tout va bien 🎉'",
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "mocha tests/**/*.test.js",
"prepare": "husky install",
"svelte-check": "svelte-check --tsconfig tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daktary-team/scribouilli.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/daktary-team/scribouilli/issues"
},
"homepage": "https://github.com/daktary-team/scribouilli#readme",
"lint-staged": {
"**/*.js": "prettier --write --ignore-unknown"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/chai": "^4.3.10",
"@types/dompurify": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.5",
"@types/mocha": "^10.0.4",
"@types/page": "^1.11.8",
"@types/sinon": "^17.0.1",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.3.10",
"eslint": "^8.53.0",
"fake-indexeddb": "^5.0.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"mock-local-storage": "^1.1.24",
"npm-run-all": "^4.1.5",
"prettier": "3.0.0",
"rollup": "^2.45.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^7.1.0",
"sass": "^1.32.8",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"svelte": "^3.49.0",
"svelte-check": "^3.4.6",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.2.2"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.6.0",
"baredux": "github:DavidBruant/baredux#v1.0.8",
"d3-fetch": "^3.0.1",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"front-matter": "^4.0.2",
"isomorphic-git": "^1.24.2",
"js-yaml": "^3.14.1",
"marked": "^11.0.0",
"page": "^1.11.6",
"remember": "github:DavidBruant/remember#v1.0.2"
}
}