-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.09 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
{
"private": true,
"scripts": {
"test:e2e:server": "webpack-dev-server --config ./e2etests/webpack.config.js",
"test:e2e:cypress": "cypress open -C e2etests/cypress.json",
"pretest": "fable-splitter tests -o dist/tests --commonjs -c tests/splitter.config.js",
"test": "mocha --require jsdom-global/register dist/tests/*.test.js",
"pack": "cd src && dotnet pack -c Release",
"publish": "npm run pack && dotnet nuget push src/bin/Release/Hacn.0.0.6.nupkg --api-key $NUGET_KEY --source https://api.nuget.org/v3/index.json"
},
"dependencies": {
"@babel/core": "^7.18.13",
"fable-compiler": "^2.13.0",
"fable-loader": "^2.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@sinonjs/fake-timers": "^9.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"fable-splitter": "^2.2.1",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1"
}
}