-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
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
{
"name": "jest-svelte-testing-talk",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --single",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitryvinn/jest-svelte-testing-talk.git"
},
"author": "Dmitry Vinnik",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmitryvinn/jest-svelte-testing-talk/issues"
},
"homepage": "https://github.com/dmitryvinn/jest-svelte-testing-talk#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-transform-svelte": "^2.1.1",
"rollup": "^2.23.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.37.0"
},
"dependencies": {
"faker": "^5.5.3",
"puppeteer": "^9.0.0",
"sirv-cli": "^0.4.4"
}
}