-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "webtd",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"private": true,
"scripts": {
"test": "jest ./src --config ./jest.json",
"test-debug": "jest ./src --runInBand --config ./jest.json",
"test-watch": "jest --watch --config ./jest.json",
"build": "webpack --config webpack.prod.js",
"build-watch": "webpack --config webpack.config.js --watch",
"serve": "webpack serve --config webpack.config.js",
"generate-json-schema": "typescript-json-schema tsconfig.json MapFile --refs -o util/mapschema.json"
},
"author": "",
"devDependencies": {
"@types/copy-webpack-plugin": "^6.4.3",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.175",
"@types/ramda": "^0.26.44",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"tslint": "^5.20.1",
"typescript": "^4.4.4",
"typescript-json-schema": "^0.51.0",
"vue": "^2.6.14",
"webpack": "^5.59.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"lodash": "^4.17.21",
"ramda": "^0.25.0"
}
}