-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.04 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
{
"private": true,
"type": "module",
"scripts": {
"start-ts": "node dist-ts/index.js",
"start-webpack": "node dist-webpack/index.js",
"start-ts-node": "node --loader ts-node/esm src/index.js",
"test-babel": "node --experimental-vm-modules node_modules/.bin/jest --config=jest-babel.config.ts",
"test-ts": "node --experimental-vm-modules node_modules/.bin/jest --config=jest-ts.config.ts",
"tsc": "tsc",
"webpack": "webpack"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.17",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"babel-jest": "^27.0.0-next.3",
"babel-loader": "^8.2.2",
"babel-plugin-replace-import-extension": "^1.1.0",
"jest": "^27.0.0-next.3",
"ts-jest": "^27.0.0-next.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
}
}