-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "solidus_nextjs_frontend",
"version": "0.1.0",
"engines": {
"node": "12.18.3"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p ${PORT-3000}",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:format": "prettier --write './**/*.{js,md,json}'",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"formik": "^2.2.6",
"next": "^10.0.5",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^10.4.9",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.1",
"prettier": "^2.1.2",
"react-test-renderer": "^17.0.1"
},
"license": "ISC"
}