-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
121 lines (121 loc) · 3.25 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "puppetexplorer",
"version": "3.0.0",
"description": "A web interface for exploring PuppetDB data",
"license": "Apache-2.0",
"keywords": [
"puppet",
"puppetdb"
],
"homepage": "https://github.com/dalen/puppetexplorer",
"bugs": {
"url": "https://github.com/dalen/puppetexplorer/issues"
},
"scripts": {
"test": "jest",
"lint": "tslint --project .",
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=development --open",
"build-parcel": "parcel build src/index.html",
"start-parcel": "parcel --open src/index.html"
},
"author": {
"name": "Erik Dalén",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dalen/puppetexplorer.git"
},
"dependencies": {
"bootswatch": "^4.1.3",
"classjoin": "^0.2.1",
"date-fns": "^1.29.0",
"font-awesome": "^4.7.0",
"immutable": "^4.0.0-rc.12",
"maybe.ts": "^0.1.0",
"node-puppetdbquery": "^1.1.3",
"object-dig": "^0.1.3",
"object-hash": "^1.3.1",
"popper.js": "^1.14.4",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"react": "^16.5.2",
"react-dom": "^16.7.0",
"react-icons": "^3.2.1",
"react-popper": "^1.0.2",
"react-redux": "^5.0.4",
"react-router": "^4.1.2",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.5.0",
"reactstrap": "^6.5.0",
"reason-react": "^0.5.3",
"recharts": "^1.4.1",
"redux": "^4.0.0",
"redux-loop": "^4.4.1",
"result.ts": "^0.3.1",
"type-safe-json-decoder": "^0.2.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/object-hash": "^1.1.0",
"@types/qs": "^6.5.1",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-fa": "^4.1.5",
"@types/react-fontawesome": "^1.6.4",
"@types/react-icons": "^2.2.6",
"@types/react-router-dom": "^4.3.1",
"@types/reactstrap": "^6.4.3",
"@types/recharts": "^1.1.6",
"css-loader": "^1.0.1",
"exports-loader": "^0.7.0",
"extract-loader": "^3.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"node-deb": "^0.10.7",
"npm2rpm": "^3.1.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-typescript": "^1.0.0",
"prettier": "^1.15.2",
"protractor": "^5.4.1",
"ts-jest": "^23.10.4",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.16.0",
"tslint-immutable": "^4.9.1",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/dist/"
]
}
}