-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "osp",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"start": "sirv public --no-clear",
"dev": "rollup -c -w",
"check": "svelte-check",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.2",
"puppeteer": "^13.1.1",
"sirv-cli": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^3.0.0",
"@types/chrome": "^0.0.176",
"@types/jest": "^27.4.0",
"babel-jest": "^27.4.6",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.4.7",
"jest-chrome": "^0.7.2",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"rollup": "^2.62.0",
"rollup-jest": "^1.1.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"supertest": "^6.2.2",
"svelte": "^3.44.3",
"svelte-check": "^2.2.11",
"svelte-jester": "^2.1.5",
"svelte-preprocess": "^4.10.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
}
}