forked from itswadesh/svelte-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "sapper-ecommerce",
"description": "e-commerce project created using Sapper, Svelte, TailwindCSS, Rollup",
"version": "2.0.0",
"author": "Swadesh Behera <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "sapper dev --port 4400",
"build": "cross-env NODE_ENV=production sapper build --port 4400 --legacy",
"export": "cross-env NODE_ENV=production sapper export --legacy",
"start": "cross-env NODE_ENV=production node __sapper__/build",
"live": "run-s build copy liveS",
"liveS": "node devops/live.js",
"format:check": "prettier --check './**/*.{js,ts,css,html,svelte}'",
"copy": "node devops/copy.js",
"cy:run": "cypress run",
"cy:open": "cypress open",
"dist": "cross-env NODE_ENV=production http-server __sapper__/export -p 4400 -P https://api.litekart.in",
"test": "run-p --race dev cy:run"
},
"homepage": "https://github.com/itswadesh/sapper-ecommerce#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/itswadesh/sapper-ecommerce.git"
},
"bugs": {
"url": "https://github.com/itswadesh/sapper-ecommerce/issues"
},
"dependencies": {
"compression": "^1.7.1",
"http-proxy-middleware": "^1.0.3",
"node-fetch": "^2.6.1",
"polka": "0.5.2",
"dotenv": "^8.2.0",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/runtime": "7.9.2",
"@beyonk/svelte-carousel": "^2.4.0",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-replace": "2.3.2",
"autoprefixer": "9.7.6",
"cookie-universal": "^2.1.3",
"cross-env": "7.0.2",
"cssnano": "4.1.10",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"npm-run-all": "4.1.5",
"postcss": "7.0.27",
"postcss-import": "12.0.1",
"postcss-load-config": "2.1.0",
"postcss-url": "8.0.0",
"prettier": "^2.0.5",
"rollup": "2.7.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-svelte": "5.2.1",
"rollup-plugin-terser": "5.3.0",
"sapper": "0.27.12",
"shelljs": "^0.8.3",
"ssh2shell": "^1.9.3",
"svelte": "3.21.0",
"svelte-feather-icons": "^3.2.2",
"svelte-preprocess": "3.7.4",
"tailwindcss": "1.3.5"
}
}