This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "MDWiki",
"version": "3.2.71",
"description": "My personal wiki",
"main": "index.html",
"author": "Jan Baer",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"postbuild": "./post-build.cjs",
"deploy": "yarn build && ./deploy.sh $npm_package_version",
"serve": "live-server --port=4002 --no-browser ./dist",
"lint": "eslint ./src",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "yarn test --watch",
"prepare": "husky install"
},
"browserslist": [
"last 1 Chrome versions"
],
"eslintConfig": {
"root": true,
"env": {
"jest": true
},
"extends": [
"standard",
"standard-preact"
],
"plugins": [],
"rules": {
"semi": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"jsx-quotes": [
"error",
"prefer-double"
],
"comma-dangle": [
"error",
{
"arrays": "ignore",
"objects": "ignore"
}
]
},
"globals": {
"fetch": false,
"Headers": false
},
"settings": {
"react": {
"version": "latest"
}
}
},
"eslintIgnore": [
"dist/*"
],
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"jest": {
"rootDir": "./src",
"collectCoverageFrom": [
"src/**/**.js"
],
"coveragePathIgnorePatterns": [],
"verbose": true,
"testEnvironment": "jest-environment-node",
"transform": {}
},
"dependencies": {
"classnames": "2.3.1",
"easymde": "2.15.0",
"eventemitter3": "4.0.7",
"history": "5.1.0",
"lodash": "4.17.21",
"preact": "10.5.15",
"preact-router": "3.2.1",
"react-markdown": "7.1.0",
"react-simplemde-editor": "5.0.2"
},
"devDependencies": {
"@prefresh/snowpack": "3.1.2",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-preact": "1.1.6",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.2.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-standard": "5.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"less": "4.1.2",
"lint-staged": "12.0.1",
"micromatch": "4.0.4",
"snowpack": "3.8.8",
"snowpack-plugin-less": "1.0.7",
"trim-right": "2.0.0"
}
}