-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.21 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
{
"name": "vutt",
"productName": "VUTT Doc",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"config": {
"jest": "--coverage --passWithNoTests --ci --verbose --forceExit --detectOpenHandles --colors",
"integration_config": "-i -c integration.config.json",
"unit_coverall": "tests/unit/coverage/lcov.info",
"integration_coverall": "tests/integration/coverage/lcov.info",
"path_dist": "dist",
"path_source": "src",
"path_server": "src/server"
},
"scripts": {
"tsc": "tsc",
"prestart": "tsc",
"start": "next start",
"dev": "next",
"build": "next build",
"export": "next export",
"test": "jest $npm_package_config_jest",
"integration": "jest $npm_package_config_integration_config $npm_package_config_jest",
"test:coveralls": "jest $npm_package_config_jest && coveralls < $npm_package_config_unit_coverall && rm -rf ./tests/unit/coverage/coverage",
"integration:coveralls": "jest $npm_package_config_integration_config $npm_package_config_jest && coveralls < $npm_package_config_integration_coverall && rm -rf ./tests/integration/coverage/coverage"
},
"dependencies": {
"@asyncapi/react-component": "latest",
"axios": "latest",
"coveralls": "latest",
"next": "latest",
"next-with-workbox": "latest",
"react": "latest",
"react-dom": "latest",
"react-markdown": "latest",
"rehype-katex": "latest",
"remark-gfm": "latest",
"styled-components": "latest",
"swagger-ui-react": "latest",
"workbox-precaching": "latest",
"workbox-window": "latest",
"katex": "latest"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-plugin-root-import": "latest",
"babel-plugin-styled-components": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-filenames": "latest",
"eslint-plugin-prettier": "latest",
"jest": "latest",
"jest-cli": "latest",
"prettier": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}