-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 3.47 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
{
"name": "dotcom-page-kit",
"private": true,
"version": "0.0.0",
"description": "The aim of this project is to provide a high quality, well tested, and thoroughly documented, modern asset pipeline and application shell for Node.js applications based upon the latest industry standards.",
"scripts": {
"test": "NODE_OPTIONS='--openssl-legacy-provider' jest",
"test:ci": "jest",
"test:examples": "npm run test --workspace=examples/",
"build": "tsc --build --verbose tsconfig.build.json && npm run build:browser --workspaces --if-present",
"build:examples": "npm run build --workspace=examples/ --if-present",
"clean": "git clean -fxd -e .vscode",
"clean:dist": "npm run clean:dist --workspaces --if-present",
"clean:install": "npm run clean && npm install",
"dev": "npm run dev --workspaces --if-present",
"lint": "eslint . --ext .js,.ts,.tsx,.jsx",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx,json}'",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:ci": "start-storybook -c .storybook --ci --smoke-test",
"deploy-storybook:ci": "storybook-to-ghpages --ci"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"npm run test -- --no-cache --findRelatedTests",
"prettier --write",
"eslint --fix"
]
},
"storybook-deployer": {
"gitUsername": "next-team",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook [skip ci]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/dotcom-page-kit.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Financial-Times/dotcom-page-kit/issues"
},
"homepage": "https://github.com/Financial-Times/dotcom-page-kit#readme",
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-transform-optional-chaining": "^7.24.8",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.8.0",
"@babel/preset-typescript": "^7.8.0",
"@storybook/addon-docs": "^6.0.27",
"@storybook/addon-essentials": "^6.0.27",
"@storybook/react": "^6.0.27",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.4",
"@types/babel__traverse": "7.11.1",
"@types/node": "^10.12.26",
"@types/react": "^17.0.2",
"@typescript-eslint/parser": "^6.7.3",
"babel-jest": "^27.5.1",
"babel-loader": "^8.0.4",
"check-engine": "^1.10.1",
"css-loader": "^3.0.0",
"eslint": "^7.0.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^27.4.0",
"husky": "^4.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-puppeteer": "^5.0.4",
"lint-staged": "^10.0.0",
"morphdom": "^2.7.0",
"n-ui-foundations": "9.0.0",
"prettier": "^2.0.2",
"puppeteer": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"sass": "^1.77.2",
"sass-embedded": "^1.77.2",
"sass-loader": "^10.5.2",
"style-loader": "^1.0.0",
"supertest": "^4.0.2",
"ts-jest": "^27.1.4",
"typescript": "4.1.6"
},
"engines": {
"node": "18.x || 20.x",
"npm": "8.x || 9.x || 10.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"workspaces": [
"packages/*",
"examples/*"
],
"volta": {
"node": "20.13.1"
},
"dependencies": {
"@financial-times/athloi": "^2.0.1"
}
}