forked from Live2D/CubismWebSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
31
32
33
34
35
36
{
"private": true,
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"scripts": {
"build:framework": "npx webpack --config build/framework.webpack.config.js",
"watch:framework": "npx webpack --watch --config build/framework.webpack.config.js",
"build:sample": "npx webpack --config build/sample.webpack.config.js",
"watch:sample": "npx webpack --watch --config build/sample.webpack.config.js",
"build:all": "npm-run-all build:framework build:sample",
"watch:all": "npm-run-all watch:framework watch:sample",
"lint": "tslint -p . Sample/TypeScript/Demo/src/**/*.ts -t verbose",
"lint:fix": "tslint --fix -p . Sample/TypeScript/Demo/src/**/*.ts -t stylish"
},
"dependencies": {
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"glob": "^7.1.2",
"husky": "^2.2.0",
"npm-run-all": "^4.1.3",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.2.1"
}
}