forked from evershopcommerce/evershop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "evershop",
"version": "1.0.0-beta",
"description": "A shopping cart platform with Express, React and MySQL",
"files": [
"bin",
"src",
"dist",
".babelrc",
"babel.config.js"
],
"bin": {
"evershop": "./bin/evershop"
},
"workspaces": [
"packages/*",
"extensions/*"
],
"scripts": {
"dev": "evershop dev",
"setup": "evershop install",
"build": "evershop build",
"start": "evershop start",
"test": "jest --workspace=@evershop/evershop",
"cypress": "cypress run"
},
"author": "The Nguyen (https://evershop.io)",
"license": "GNU GENERAL PUBLIC LICENSE 3.0",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"babel-jest": "^28.1.1",
"cypress": "^9.7.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.3",
"prettier": "2.8.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"tailwindcss": "^3.2.1",
"webpack-bundle-analyzer": "^4.5.0"
},
"dependencies": {
"@evershop/evershop": "^1.0.0-beta",
"babel-plugin-fast-async": "^6.1.2",
"regenerator-runtime": "^0.13.9",
"supertest": "^6.2.2"
}
}