-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"name": "tads",
"version": "0.1.0",
"scripts": {
"dev": "webpack serve",
"build": "cross-env MODE=production webpack",
"build:profile": "cross-env MODE=production webpack --profile --json > stats.json",
"test": "jest --config config/jest.config.js --rootDir .",
"test:watch": "jest --config config/jest.config.js --rootDir . --watchAll",
"format": "prettier --config config/prettierrc --ignore-path config/prettierignore --write app/ parser/ tests/",
"lint": "eslint --config config/eslintrc.js --ignore-path config/eslintignore --ext .js,.ts --fix app/ parser/ tests/"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"eslint": "^7.25.0",
"file-loader": "^6.2.0",
"git-rev-sync": "^3.0.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"less": "^4.1.1",
"less-loader": "^8.1.0",
"moment": "^2.29.1",
"monaco-editor-webpack-plugin": "^3.0.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.5",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"monaco-editor": "^0.23.0",
"timeago.js": "^4.0.2"
}
}