-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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": "expect-exception",
"description": "Official website of expect(Exception)",
"version": "0.0.1",
"license": "MIT",
"contributors": [
"Vanessa Böhner <[email protected]> (https://vannsl.io/)"
],
"scripts": {
"transform": "node -e 'require(\"./transformJsonToXml\").transform()'",
"dev": "sapper dev",
"dev:tailwindcss": "postcss static/tailwind.css -o static/main.css -w",
"build:tailwindcss": "NODE_ENV=production postcss static/tailwind.css -o static/main.css",
"build": "npm run transform && npm run build:tailwindcss && sapper build --legacy",
"export": "npm run transform && npm run build:tailwindcss && sapper export --legacy",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy": "run-p --race dev cy:run",
"test": "jest src",
"test:watch": "npm run test -- --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "4.1.3",
"@polka/redirect": "1.0.0-next.15",
"compression": "1.7.4",
"polka": "next",
"sirv": "1.0.11"
},
"devDependencies": {
"@babel/core": "7.17.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/runtime": "7.17.7",
"@rollup/plugin-commonjs": "21.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-replace": "4.0.0",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/svelte": "3.0.3",
"autoprefixer": "10.4.2",
"babel-jest": "27.5.1",
"cssnano": "5.1.4",
"jest": "27.5.1",
"jest-transform-svelte": "2.1.1",
"lodash": "4.17.21",
"node-sass": "7.0.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.8",
"postcss-cli": "9.1.0",
"postcss-load-config": "3.1.3",
"rollup": "2.70.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-svelte": "6.1.1",
"rollup-plugin-terser": "7.0.2",
"sapper": "0.29.3",
"svelte": "3.46.4",
"svelte-preprocess": "4.10.4",
"tailwindcss": "2.2.19"
}
}