-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@datdao/atlas-monaco",
"version": "1.0",
"description": "Atlas Monaco Editor",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack && tsc",
"build:demo": "webpack --config webpack.config.demo.js",
"test": "jest --verbose",
"coverage": "npm run test -- --coverage",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"test-ci": "jest --ci --coverage",
"badges": "generateBadges"
},
"repository": {
"type": "git",
"url": "https://github.com/hodgef/ts-library-boilerplate-basic"
},
"author": "Dat Dao <[email protected]> (https://github.com/datdao)",
"license": "MIT",
"bugs": {
"url": "https://github.com/datdao/atlas-monaco/issues"
},
"homepage": "https://github.com/datdao/atlas-monaco",
"keywords": [
"library",
"starter",
"es6"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-typescript": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@monaco-editor/react": "^4.4.6",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.4.0",
"mini-css-extract-plugin": "^2.7.3",
"monaco-editor": "^0.36.1",
"node-jest-badges": "^1.3.12",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.11.1"
},
"jest": {
"testPathIgnorePatterns": [
"/testdata/"
],
"coveragePathIgnorePatterns": [
"/testdata/"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js",
"monaco-editor": "<rootDir>/scripts/testMock.js"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
]
},
"dependencies": {
"jest-coverage-badges": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.1"
}
}