-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.01 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
{
"name": "astra-react",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && webpack --mode production",
"dev": "npx concurrently \" npm run build:dev \" \" npm run serve \" ",
"build:dev": "npm run clean && npm run build:local -- --watch",
"build:local": "npm run clean && webpack --env local",
"clean": "rm -rf dist && rm -rf dist_sections",
"serve": "npx nodemon scripts/server.js \"--ignore src/*\" ",
"publish:theme": "npm run build && node scripts/publish.js",
"publish:local": "npm run build:local && node scripts/publish.js --local",
"test": "echo \"Error: no test specified\" && exit 1",
"upload-sections": "node scripts/extract-section-props.js",
"linter": "eslint src --fix",
"refresh": "npm uninstall fdk-store && npm install gitlab:fynd/regrowth/fynd-platform/themes/shadowfire.git#develop"
},
"author": "Karan Raina <karanraina@gofynd.com>",
"license": "ISC",
"devDependencies": {
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-react": "^7.32.2",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.8.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@gofynd/fdk-client-javascript": "^1.3.6-beta.1",
"@svgr/webpack": "^8.0.1",
"babel-loader": "^9.1.0",
"buffer": "^6.0.3",
"card-validator": "8.1.1",
"fdk-store": "https://github.com/gofynd/fdk-store.git#v2.0.26",
"imask": "^6.4.3",
"isomorphic-fetch": "^3.0.0",
"marked": "^5.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hydration-overlay": "^0.1.2",
"react-snap-carousel": "^0.3.2",
"url": "^0.11.0"
},
"theme_metadata": {
"theme_type": "react"
}
}