-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "phoenix-config",
"version": "1.0.0",
"description": "Configuration for kasper/phoenix written in TypeScript",
"main": "src/phoenix.ts",
"dependencies": {
"@types/phoenix": "github:mafredri/phoenix-typings#main",
"rxjs": "^7.6.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"prettier": "^2.8.1",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"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",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"phoenix",
"typescript"
],
"author": "Mathias Fredriksson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafredri/phoenix-config/issues"
},
"homepage": "https://github.com/mafredri/phoenix-config#readme",
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all"
}
}