forked from bigcommerce/sample-app-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "sample-app-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest --updateSnapshot",
"lint": "eslint . --ext .ts,.tsx,.js",
"db:setup": "node scripts/db.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=14 <19",
"npm": ">=7.20.x <8.14"
},
"dependencies": {
"@bigcommerce/big-design": "^0.34.3",
"@bigcommerce/big-design-theme": "^0.17.0",
"firebase": "^9.14.0",
"jsonwebtoken": "^9.0.0",
"mysql": "^2.18.1",
"next": "^12.3.3",
"node-bigcommerce": "github:bigcommerce/node-bigcommerce",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.6",
"swr": "^0.5.7"
},
"devDependencies": {
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"@types/react": "^17.0.2",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-jest": "^27.5.1",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"typescript": "^4.7.3"
}
}