-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "shaderity-graph",
"version": "0.1.2",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/actnwit/shaderity-graph.git",
"author": "Yuki Shimada <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.11.2",
"express": "^4.17.1",
"gts": "^3.1.0",
"husky": "^7.0.1",
"jest": "^27.2.4",
"loader-utils": "^2.0.0",
"requirejs": "^2.3.6",
"shaderity-loader": "^0.0.16",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.4",
"tsc-watch": "^4.4.0",
"typedoc": "^0.22.5",
"typescript": "^4.3.5",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"shaderity": "^0.2.2"
},
"scripts": {
"prepare": "husky install",
"build": "npm run build-esm && npm run build-umd-dev && npm run build-umd-prod",
"build-umd-dev": "npx webpack --config ./config/webpack/webpack.config.development.js",
"build-umd-prod": "npx webpack --config ./config/webpack/webpack.config.production.js",
"build-esm": "npx webpack --config ./config/webpack/webpack.config.common_module.js",
"watch-samples": "tsc-watch -p ./samples/ --onSuccess \"node server.js\"",
"gts-lint": "gts lint ./src ./samples/**/*.ts",
"gts-clean": "gts clean ./src ./samples/**/*.ts",
"gts-fix": "gts fix ./src ./samples/**/*.ts",
"doc": "npx typedoc --entryPointStrategy expand --exclude '**/*index.ts' --exclude '**/*I[A-Z]*.ts' ./src/",
"test": "jest --config ./config/jest/jest.config.js"
}
}