forked from HadoukenIO/notifications-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.54 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
{
"name": "openfin-notifications",
"version": "0.9.6",
"description": "",
"main": "dist/client/index.js",
"types": "dist/client/index.d.ts",
"scripts": {
"test": "jest",
"check": "gts check",
"fix": "gts fix",
"clean": "gts clean && rimraf dist staging",
"compile": "npm run compile:client && npm run compile:provider",
"compile:client": "genversion --es6 --semi src/client/version.ts && tsc -p tsconfig.client.json",
"compile:provider": "tsc -p tsconfig.provider.json",
"docs": "typedoc --name \"OpenFin Notifications\" --out ./build/docs --excludeNotExported --excludePrivate --excludeProtected --hideGenerator --tsconfig tsconfig.client.json --readme none",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"package": "webpack --mode production",
"package:dev": "webpack --mode development",
"build": "npm run compile && npm run package",
"build:dev": "npm run compile && npm run package:dev",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfin/Notification-Service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/openfin/Notification-Service/issues"
},
"homepage": "https://github.com/openfin/Notification-Service#readme",
"dependencies": {
"openfin-layouts": "0.9.3"
},
"devDependencies": {
"@types/cucumber": "^4.0.1",
"@types/jest": "^22.2.0",
"@types/moment": "^2.13.0",
"@types/node": "^9.4.6",
"@types/openfin": "^34.0.0",
"@types/react": "^16.3.12",
"@types/react-dom": "^16.0.5",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"cucumber": "^4.0.0",
"express": "^4.16.2",
"file-loader": "^1.1.11",
"fs": "0.0.1-security",
"genversion": "^2.1.0",
"gts": "^0.8.0",
"hadouken-js-adapter": "^0.36.1-alpha.1",
"jest": "^22.4.2",
"jest-util": "^23.4.0",
"mini-css-extract-plugin": "^0.4.1",
"moment": "^2.22.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-jest": "^23.10.4",
"ts-loader": "^4.4.2",
"typescript": "^3.1.1",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"jest": {
"verbose": true,
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.(ts|tsx)"
]
}
}