-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "kokodokai",
"description": "Sapper",
"version": "1.1.1",
"author": "Ricky de Laveaga <https://rdela.com>",
"license": "SEE LICENSE IN license.txt",
"private": true,
"scripts": {
"d": "npm run dev",
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"lint": "eslint \"{src,cypress}/**/*.js\"",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run"
},
"dependencies": {
"compression": "1.7.4",
"marked": "4.2.12",
"polka": "next",
"sirv": "2.0.2"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/runtime": "7.20.7",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"cypress": "12.0.2",
"eslint": "8.29.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-svelte3": "4.0.0",
"npm-run-all": "4.1.5",
"rollup": "2.79.1",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "7.0.2",
"sapper": "0.29.3",
"svelte": "3.55.1"
}
}