forked from mafredri/phoenix-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "phoenix-config",
"version": "1.0.0",
"description": "Configuration for kasper/phoenix written in TypeScript",
"author": "Hady Osman",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"start": "yarn run watch",
"watch": "webpack --watch --config webpack.prod.js",
"watch-dev": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "tslint src/**/*.ts && eslint . --ext .ts",
"prettier": "prettier --write ."
},
"dependencies": {
"rxjs": "^7.6.0",
"typescript": "^5.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/phoenix": "github:mafredri/phoenix-typings#main",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.55.0",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"webpack-symlink-plugin": "^1.0.1"
},
"keywords": [
"phoenix",
"typescript"
],
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true
}
}