-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "eleftable",
"version": "1.0.0",
"devDependencies": {
"@testing-library/jest-dom": "^4.2.2",
"jest": "^24.9.0",
"jest-transform-svelte": "^2.1.0",
"rollup": "^1.12.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.0.0"
},
"dependencies": {
"d3-color": "^1.4.0",
"d3-interpolate": "^1.3.2",
"d3-scale": "^3.2.0",
"d3-scale-chromatic": "^1.5.0",
"firebase": "^7.2.2",
"rxfire": "^3.8.7",
"rxjs": "^6.5.3",
"sirv-cli": "^0.4.4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev",
"test": "jest src",
"test:watch": "npm run test -- --watch"
},
"jest": {
"transform": {
"^.+\\.svelte$": "jest-transform-svelte"
},
"transformIgnorePatterns": [
"node_modules/(?!(d3-scale)/)"
],
"moduleFileExtensions": [
"js",
"svelte"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}
}