-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 877 Bytes
/
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
{
"name": "phoenix-config",
"version": "0.0.1-alpha",
"description": "Configuration for phoenix written in TypeScript",
"main": "src/phoenix.ts",
"dependencies": {
"typescript": "3.8.3",
"typings": "^2.1.1"
},
"devDependencies": {
"prettier": "2.0.5",
"ts-loader": "7.0.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"scripts": {
"start": "npm run watch",
"watch": "webpack --watch",
"build": "webpack",
"typings": "typings install",
"lint": "tslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elliot-evans-95/phoenix-config.git"
},
"keywords": [
"phoenix",
"typescript"
],
"author": "Elliot Evans",
"license": "MIT",
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "all"
}
}