-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
88 lines (88 loc) · 2.91 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
{
"name": "opencerts-website",
"version": "2.0.0",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:update": "jest -u",
"dev": "next",
"lint": "echo 'No lint step for this project; use lint:check and lint:fix locally'",
"lint:check": "eslint ./src ./pages --ext .js --max-warnings 0",
"lint:fix": "eslint ./src ./pages --ext .js --fix",
"build": "next build",
"build:static": "next build && next export",
"start": "next build && next start",
"start:watch": "nodemon --exec \"npm run start\"",
"cname": "echo 'opencerts.io' > out/CNAME",
"deploy": "rm -rf out && npm run build:static",
"analyze": "BUNDLE_ANALYZE=browser npm run start",
"dev-cli": "node -r esm ./scripts/cli.js",
"serve-static": "http-server out -s -p 3000",
"integration": "testcafe chrome /home/nebulis/IdeaProjects/legacy-templates/src/components/CertificateTemplates/tlds/sg/gov/seab/SOR_GCEO/integration.spec.js",
"integration:headless": "testcafe chrome:headless src/**/*.spec.js",
"integration:watch": "nodemon --exec \"npm run integration\" --watch src"
},
"dependencies": {
"@govtechsg/open-attestation": "^1.1.30",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-sass": "^1.0.1",
"date-fns": "^1.29.0",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.43",
"next": "^10.0.6",
"number-to-words": "^1.2.4",
"penpal": "^4.0.0",
"prop-types": "^15.6.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"redux": "^4.0.0"
},
"license": "ISC",
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-plugin-module-resolver": "^3.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-testcafe": "^0.2.1",
"esm": "^3.1.1",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"inquirer": "^6.2.2",
"jest": "^24.7.1",
"jest-sonar-reporter": "^2.0.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.10",
"postcss": "^8.4.31",
"prettier": "^1.15.3",
"proxyquire": "^2.1.0",
"react-test-renderer": "^16.8.6",
"sinon": "^7.1.1",
"testcafe": "^1.1.0",
"webpack": "^4.44.2"
},
"jest": {
"testResultsProcessor": "jest-sonar-reporter"
},
"jestSonar": {
"sonar56x": true,
"reportPath": ".coverage",
"reportFile": "sonar-report.xml",
"indent": 2
}
}