-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.1 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
{
"name": "expect-exception",
"description": "Official website of expect(Exception)",
"version": "0.0.1",
"license": "MIT",
"contributors": [
"Vanessa Böhner <boehner.vanessa@gmail.com> (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.0.0",
"@polka/redirect": "1.0.0-next.7",
"compression": "1.7.4",
"polka": "next",
"sirv": "1.0.10"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/runtime": "7.12.5",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.1.0",
"@rollup/plugin-replace": "2.3.4",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/svelte": "3.0.3",
"autoprefixer": "10.2.3",
"babel-jest": "26.6.3",
"cssnano": "4.1.10",
"jest": "26.6.3",
"jest-transform-svelte": "2.1.1",
"lodash": "4.17.20",
"node-sass": "5.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.2.4",
"postcss-cli": "8.3.1",
"postcss-load-config": "3.0.0",
"rollup": "2.37.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "7.0.2",
"sapper": "0.28.10",
"svelte": "3.31.2",
"svelte-preprocess": "4.6.1",
"tailwindcss": "2.0.2"
}
}