-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 2.78 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
{
"name": "@skyscanner/backpack-foundations",
"version": "0.0.1",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "^18.19.0",
"npm": "^10.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skyscanner/backpack-foundations.git"
},
"author": "Backpack Design System <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:tokens && lerna run build",
"build:tokens": "lerna run tokens",
"clean": "npm run clean:lerna && npm run clean:node_modules",
"clean:node_modules": "rm -rf node_modules",
"clean:lerna": "lerna clean --yes",
"jest": "TZ=Etc/UTC jest --coverage",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint . --ext js,jsx",
"lint:js:fix": "eslint . --ext js,jsx --fix",
"lint:scss": "stylelint '{packages,stories/**}/**/*.scss'",
"lint:scss:fix": "stylelint '{packages,stories/**}/**/*.scss' --fix",
"preinstall": "npx [email protected]",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\"",
"release": "npm run build && npm test && lerna publish",
"test": "npm run lint && npm run jest",
"start": "npm run build && npm run storybook",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"storybook:dist": "NODE_OPTIONS=--openssl-legacy-provider storybook build -c .storybook -o dist-storybook"
},
"jest": {
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"testRegex": "packages/.*-test\\.js$",
"transformIgnorePatterns": [
"node_modules/(?!bpk)"
]
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/register": "^7.24.6",
"@skyscanner/stylelint-config-skyscanner": "^6.0.0",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-viewport": "7.6.17",
"@storybook/html": "7.6.17",
"@storybook/html-webpack5": "^8.1.11",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"del": "^5.0.0",
"gulp": "^5.0.0",
"gulp-jsonlint": "^1.2.2",
"gulp-theo": "^2.0.0",
"jest": "^24.8.0",
"lerna": "^8.1.6",
"lint-staged": "^15.2.0",
"lodash": "^4.17.20",
"merge2": "^1.2.3",
"plugin-error": "^2.0.1",
"postcss-loader": "^8.1.1",
"sass": "^1.77.1",
"sass-loader": "^14.1.1",
"storybook": "^7.6.17",
"style-loader": "^3.3.4",
"theo": "^8.1.3",
"through2": "^4.0.2",
"tinycolor2": "^1.6.0",
"webpack": "^5.92.1",
"wrapper-webpack-plugin": "^2.2.2"
}
}