-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 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
{
"name": "devops-knowledge-share-ui",
"version": "0.3.0",
"private": true,
"scripts": {
"build": "next build",
"check-types": "tsc",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"dockerBuild": "docker build -t $npm_package_name .",
"dockerRun": "docker run -e KNOWLEDGE_SHARE_API=http://host.docker.internal:8080 -p 3000:3000 -it $npm_package_name",
"test": "jest --coverage --coverageDirectory ./coverage",
"testContract": "npm run test --workspace test/contract",
"testWatch": "jest --watch",
"validate": "npm-run-all --parallel check-types lint",
"validateBuild": "npm-run-all --parallel validate build",
"wdio": "wdio run test/webdriver/chromedriver.conf.ts",
"wdio-github": "wdio run test/webdriver/github-actions.conf.ts",
"wdio-local": "wdio run test/webdriver/chromedriver.conf.ts",
"wdio-dev": "wdio run test/webdriver/zalenium-dev.conf.ts",
"wdio-qa": "wdio run test/webdriver/zalenium-qa.conf.ts "
},
"repository": {
"type": "git",
"url": "https://github.com/liatrio/keyless-workflow-demo"
},
"workspaces": [
"src",
"test/**"
],
"keywords": [
"Next.js",
"React",
"Template"
],
"author": "liatrio",
"bugs": {
"url": "https://github.com/liatrio/keyless-workflow-demo"
},
"homepage": "https://github.com/liatrio/keyless-workflow-demo",
"dependencies": {
"bootstrap": "^5.1.3",
"html5-history-api": "^4.2.10",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-table": "^7.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "16.11.7",
"@types/react": "17.0.35",
"@types/react-table": "^7.7.9",
"@wdio/cli": "^7.16.15",
"@wdio/local-runner": "^7.16.15",
"@wdio/mocha-framework": "^7.16.15",
"@wdio/selenium-standalone-service": "^7.16.14",
"@wdio/spec-reporter": "^7.16.14",
"chromedriver": "^103.0.0",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"husky": "^7.0.0",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.1.2",
"node-mocks-http": "^1.11.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"sass": "^1.43.3",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.1.0",
"stylelint-config-standard-scss": "^5.0.0",
"ts-node": "^10.6.0",
"typescript": "4.4.4",
"wdio-chromedriver-service": "^7.2.8",
"wdio-wait-for": "^2.2.1"
},
"browserslist": [
"last 2 versions",
"not dead",
"ie >= 9"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{css,scss}": "stylelint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,json,md,mdx,yaml,yml}": "prettier --write"
}
}