This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 2.43 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
{
"name": "opencerts-admin-ui",
"version": "0.0.1",
"scripts": {
"dev": "next",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"build": "next build",
"build:static": "next build && next export",
"start": "next build && next start",
"cname": "echo 'admin.opencerts.io' > out/CNAME",
"deploy": "rm -rf out && npm run build:static",
"deploy:legacy": "npm run deploy:prebuilt && gh-pages --dotfiles --dist out",
"deploy:prebuilt": "rm -rf out && npm run build:static && touch out/.nojekyll && npm run cname",
"serve-static": "http-server out -s -p 3000",
"integration": "testcafe chrome src/**/*.spec.js",
"integration:headless": "npm run build:static && testcafe chrome:headless src/**/*.spec.js --app \"npm run serve-static\"",
"integration:watch": "nodemon --exec \"npm run integration\" --watch src"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/runtime": "7.13.10",
"@emotion/core": "^10.0.10",
"@ledgerhq/hw-transport-webusb": "5.53.0",
"@ledgerhq/web3-subprovider": "4.48.0",
"debug": "^4.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-plugin-react": "^7.7.0",
"jest-mock": "^24.8.0",
"lodash": "^4.17.13",
"next": "^10.1.3",
"next-redux-wrapper": "^2.0.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.1",
"react-spinners": "^0.5.4",
"react-tabs": "^2.2.1",
"react-test-renderer": "^16.8.6",
"react-toastify": "^5.3.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.16.0",
"truffle-contract": "^3.0.4",
"web3": "^1.3.4",
"web3-provider-engine": "14.0.6",
"web3-utils": "^1.3.4"
},
"license": "ISC",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-testcafe": "^0.2.1",
"gh-pages": "^1.1.0",
"http-server": "^0.11.1",
"jest": "^24.5.0",
"jest-emotion": "^10.0.11",
"prettier": "^1.10.2",
"testcafe": "^1.2.1",
"webpack": "^5.30.0"
}
}