-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
102 lines (102 loc) · 3.06 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
{
"name": "swell-js",
"version": "4.2.5",
"description": "Swell JS library for client-side stores",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/swellstores/swell-js"
},
"license": "MIT",
"type": "module",
"main": "./dist/swell.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/swell.umd.min.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/swell.cjs"
}
},
"files": [
"dist",
"types"
],
"dependencies": {
"deepmerge": "^4.3.1",
"fast-case": "^1.7.0",
"qs": "^6.12.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-import-attributes": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.8",
"@material-ui/core": "4.9.0",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "4.0.0-alpha.42",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@stripe/stripe-js": "^3.1.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.9.1",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"nodemon": "^3.1.0",
"prettier": "^3.2.4",
"react": "16.12.0",
"react-dev-utils": "12.0.1",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"rimraf": "^5.0.5",
"rollup": "3.29.5",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-polyfill-node": "0.13.0",
"style-loader": "^3.3.4",
"typescript": "~5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"test": "jest --config=jest.config.json --detectOpenHandles",
"test:watch": "jest --config=jest.config.json --watch",
"test:page": "webpack-dev-server --open --config test/page/webpack.config.cjs",
"watch": "nodemon --watch src --exec 'npm run build'",
"prebuild": "rimraf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"bump": "npm version patch && npm publish",
"prepare": "git config core.hooksPath .git-hooks || echo 'Not in a git repo'",
"prepack": "npm run build",
"lint": "eslint \"{src,types}/**/*.{js,jsx,json,ts}\"",
"lint:fix": "npm run lint -- --fix"
}
}