-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "takao",
"dependencies": {
"inter-ui": "^4.1.0"
},
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "postcss -o takao/static/takao.css static/styles/index.pcss",
"postbuild:css": "shx cp \"node_modules/inter-ui/LICENSE.txt\" \"takao/static/inter-ui/\"",
"build:js": "babel -o takao/static/takao.js static/takao.ts",
"start": "http-server docs/build/html",
"test": "python scripts/run_e2e_tests.py",
"test:update": "python scripts/run_e2e_tests_update_snapshots.py"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.49.1",
"cssnano": "^7.0.6",
"http-server": "^14.1.1",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.5",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.2",
"postcss-url": "^10.1.3",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"stylelint": "^16.12.0",
"typescript": "^5.7.2"
}
}