-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.04 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
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
{
"name": "svelte-app",
"version": "1.0.0",
"homepage": "https://rolandisimo.github.io/bs-bingo/",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"validate": "svelte-check",
"predeploy": "npm run build",
"deploy": "npx gh-pages -d public/",
"cypress:open": "cypress open",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^3.0.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/svelte": "^3.0.0",
"@tsconfig/svelte": "^1.0.0",
"@types/cypress-cucumber-preprocessor": "^4.0.1",
"@types/jest": "^26.0.19",
"cypress": "^8.6.0",
"cypress-cucumber-preprocessor": "^4.3.0",
"jest": "^26.6.3",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"svelte-check": "^1.0.0",
"svelte-jester": "^1.3.0",
"svelte-preprocess": "^4.0.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^3.9.3"
},
"dependencies": {
"canvas-confetti": "^1.3.2",
"node-sass": "^5.0.0",
"sirv-cli": "^1.0.0",
"svelte-navigator": "^3.1.5",
"tsify": "^5.0.4"
},
"jest": {
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
]
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}