-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.79 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
50
51
52
53
54
55
{
"name": "typescript-template",
"version": "1.0.0",
"main": "build/index.js",
"author": "すー <[email protected]>",
"license": "MIT",
"scripts": {
"tsc": "ttsc",
"tsc:p": "ttsc --module \"umd\" --sourceMap false --resolveJsonModule false",
"build:d": "webpack --config webpack.dev.js --display-error-details --progress",
"build:p": "webpack --config webpack.prod.js --display-error-details --progress",
"watch": "yarn run build:d --watch",
"execwatch": "nodemon dist/bundle.js",
"prettier:fix": "prettier --write ./src/**/*.{ts,js} ./src/*.{ts,js} ./*.js",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix ./src",
"lint:check": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"test": "jest",
"test-c": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.7.0",
"@zerollup/ts-transform-paths": "^1.7.17",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"hard-source-webpack-plugin": "^0.13.1",
"jest": "^26.0.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"thread-loader": "^2.1.3",
"ts-jest": "^25.5.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.10.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"ttypescript": "^1.5.10",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"linq": "^3.2.2"
}
}