This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.86 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
{
"name": "@fdmg/fd-my-interests",
"version": "2.0.3",
"description": "FD-themed my interests",
"types": "dist/MyInterests.d.ts",
"main": "dist/my-interests.js",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:FDMediagroep/fd-ts-react-my-interests.git"
},
"scripts": {
"build-demo": "npm run copy-img && npm run copy-demo-html && cross-env NODE_ENV=production webpack --mode=production --config webpack.demo.config.js",
"build-dev": "webpack --mode=development",
"build-prod": "cross-env NODE_ENV=production webpack --mode=production",
"copy-demo-html": "cpx -p -v \"demo/**/*.html\" \"dist/\"",
"copy-img": "cpx -p -v \"img/**/*\" \"dist/\"",
"lint": "tslint -p .",
"release": "npm update && npm i && npm run test && npm run lint && npm run build-prod",
"test": "jest",
"tsc": "tsc -d",
"updateSnapshot": "jest --updateSnapshot",
"watch": "npm run build-prod -- --watch",
"watch-demo": "npm run build-demo -- --watch"
},
"keywords": [
"FD",
"FDMG",
"My Interests",
"TypeScript",
"React"
],
"author": "Willem Liu",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "5.0.1",
"@types/uniqid": "^4.1.3",
"@types/webpack-env": "^1.15.2",
"awesome-typescript-loader": "^5.2.1",
"chokidar": "^3.4.1",
"coveralls": "^3.1.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.2",
"har-validator": "^5.1.3",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.5.1",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@fdmg/fd-buttons": "^2.0.1",
"@fdmg/fd-card": "^2.0.2",
"@fdmg/fd-typography": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1",
"uniqid": "^5.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/(.*)(test|spec)\\.(jsx?|tsx?)$",
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"collectCoverage": true,
"coverageDirectory": "dist/coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
}
}