rgl/concurrency/package.json

43 lines
847 B
JSON
Raw Permalink Normal View History

2021-10-02 21:39:02 -05:00
{
"name": "concurrency",
"version": "1.0.0",
"description": "",
"main": "index.js",
2021-10-04 13:36:07 -05:00
"jest": {
"transform": {
"^.+\\.tsx?": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
2021-10-02 21:39:02 -05:00
"scripts": {
2021-10-04 13:36:07 -05:00
"test": "jest --passWithNoTests",
"build": "webpack"
2021-10-02 21:39:02 -05:00
},
"keywords": [],
"author": "",
"dependencies": {
"axios": "^0.22.0",
2021-10-02 21:39:02 -05:00
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
2021-10-04 13:36:07 -05:00
"@types/jest": "^27.0.2",
"@types/react": "^17.0.27",
2021-10-02 21:39:02 -05:00
"@types/react-dom": "^17.0.9",
2021-10-04 13:36:07 -05:00
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
2021-10-02 21:39:02 -05:00
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
}
}