-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "chengetawebapp",
"version": "1.0.0",
"private": true,
"scripts": {
"watch:tailwind": "postcss wwwroot/tailwind.css -o wwwroot/index.css -w",
"build:tailwind": "cross-env NODE_ENV=production postcss wwwroot/tailwind.css -o wwwroot/index.css",
"build": "npm run build:tailwind && rollup -c",
"dev": "concurrently \"rollup -c -w\" \"npm run watch:tailwind\"",
"start": "sirv public --no-clear",
"serve": "serve public -p 80",
"test": "npx jest tests",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.1",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^9.8.8",
"babel-jest": "^29.1.2",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"jest": "^29.1.2",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.17",
"postcss-cli": "^7.1.2",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"svelte-jester": "^2.3.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"webpack": "^5.74.0"
},
"dependencies": {
"jest-environment-jsdom": "^29.1.2",
"jwt-decode": "^3.1.2",
"leaflet": "^1.9.2",
"lodash.isequal": "^4.5.0",
"sirv-cli": "^2.0.0"
}
}