-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "storefront-starter-kit",
"version": "1.18.0",
"description": "Makaira Storefront",
"author": "René Mäkeler <[email protected]>",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:MakairaIO/storefront-starter-kit.git"
},
"homepage": "https://github.com/MakairaIO/storefront-starter-kit",
"scripts": {
"lint": "next lint --dir frontend --dir pages --dir patterns",
"clean": "rimraf public/assets/svgs/icons.svg && rimraf public/assets/styles/main.css",
"predev": "npm run clean",
"dev": "npm-run-all --parallel build:config build:svgs dev:*",
"dev:server": "nodemon server/index.js",
"dev:styles": "stylus --include-css --watch patterns/index.styl --out public/assets/styles/main.css",
"dev:config": "chokidar 'config/**/*.json' -c 'npm run build:config'",
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:*",
"build:next": "next build",
"build:svgs": "svgstore --inline public/assets/svgs/*.svg -o public/assets/svgs/icons.svg",
"build:styles": "stylus --include-css --compress patterns/index.styl --out public/assets/styles/main.css",
"build:config": "node library/configParser/index.js",
"library:dev": "stylus --watch library/internal/library.styl --out public/assets/library/library.css",
"library:build": "stylus --compress library/internal/library.styl --out public/assets/library/library.css",
"start": "NODE_ENV=production node server/index.js",
"test": "jest --watch",
"analyze": "ANALYZE=true npm run build",
"pre-commit": "lint-staged",
"cypress": "cypress run --browser chrome",
"cypress:interactive": "cypress run --browser chrome",
"release": "semantic-release",
"lint:styles": "stylelint patterns/**/*.styl --fix"
},
"dependencies": {
"@makaira/storefront-react": "^1.6.7",
"@makaira/storefront-shop-adapter-local": "^1.6.5",
"@next/bundle-analyzer": "^14.0.3",
"@next/env": "^15.0.3",
"body-parser": "^1.20.2",
"classnames": "^2.3.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"iframe-resizer": "^4.3.2",
"next": "^15.0.3",
"nookies": "^2.5.2",
"prop-types": "^15.8.1",
"qs": "^6.11.2",
"rc-slider": "^10.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-slick": "^0.29.0",
"stylus": "^0.62.0",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@types/react": "^18.2.37",
"chokidar-cli": "^3.0.0",
"cypress": "^10.3.1",
"eslint": "^8.54.0",
"eslint-config-next": "^15.0.3",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.1",
"lint-staged": "^13.1.0",
"makaira-storefront-cli": "^1.6.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.7.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"semantic-release-slack-bot": "^3.5.2",
"slackify-markdown": "^4.4.0",
"stylelint": "^14.16.0",
"stylelint-stylus": "^0.18.0",
"svgstore-cli": "^2.0.1",
"typescript": "^4.7.4"
},
"sideEffects": [
"*.css"
],
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.(js|ts|tsx)": [
"eslint --fix",
"prettier --write"
],
"*.styl": "stylelint --fix"
},
"engines": {
"node": "18.18.2"
}
}