-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "slippers",
"version": "0.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "MIT",
"main": "src/lib/slippers.ts",
"scripts": {
"copy:static": "cp src/playground/index.html build/ && cp -r src/playground/static/* build/",
"build:lib": "esbuild src/lib/slippers.ts --bundle --outfile=build/libs/slippers/slippers.js",
"build:playground": "esbuild src/playground/index.ts --bundle --outfile=build/index.js && npm run copy:static",
"build": "npm run build:lib && npm run build:playground",
"dev": "npm run copy:static && esbuild --bundle src/playground/index.ts --outfile=build/index.js --servedir=build",
"test": "jest"
},
"dependencies": {
"coffeescript": "^2.5.1"
},
"devDependencies": {
"@testing-library/dom": "^8.18.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.0.3",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
}
}