-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "tscript",
"version": "1.3.11",
"description": "",
"main": "tscript.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"interop": "webpack --mode=production --config webpack.interop.js",
"test": "mocha -r ts-node/register \"src/**/*.test.ts\"",
"test:fmt": "prettier --check \"**/*\"",
"prettier": "prettier --write \"**/*\"",
"gen-icons": "npx ts-node ./src/ide/gen-icons.ts"
},
"devDependencies": {
"@interactjs/types": "^1.10.2",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.167",
"@types/mocha": "^9.0.0",
"chai": "^4.2.0",
"css-loader": "^6.2.0",
"html-inline-css-webpack-plugin": "^1.10.0",
"html-inline-script-webpack-plugin": "^2.0.2",
"html-webpack-plugin": "^5.0.0-beta.6",
"mini-css-extract-plugin": "^2.2.2",
"mocha": "^9.1.1",
"prettier": "^2.2.1",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.1"
},
"dependencies": {
"interactjs": "^1.10.2"
}
}