-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "gomi-frontend-framework",
"version": "0.0.0-dev-2",
"description": "React-like frontend framework to enable quick scaffolding of Material UI-based mobile web apps",
"main": "dist/bundle.js",
"type": "module",
"scripts": {
"test": "jest --verbose",
"lint": "eslint **/**.js",
"build": "webpack"
},
"author": "Anthony Volk",
"license": "MIT",
"babel": {
"plugins": [
"@babel/syntax-dynamic-import"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserslist": {
"targets": ">1%"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react-addons-test-utils"
]
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.7",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.4.1",
"babel-loader": "^9.1.2",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"jest-cli": "^29.4.1",
"prettier": "^2.8.3",
"react-addons-test-utils": "^15.6.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}