-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.9 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": "@nationalarchives/frontend",
"version": "0.1.21-prerelease",
"description": "The National Archives frontend styles",
"scripts": {
"start": "storybook dev -p 6006",
"build": "storybook build -o storybook --webpack-stats-json",
"test": "node tasks/test-fixtures.js && test-storybook --verbose --stories-json",
"lint": "prettier --check '{src,.storybook,tasks}/**/*.{js,mjs,scss,json,html}' && stylelint 'src/**/*.scss' && eslint 'src/**/*.mjs'",
"lint:fix": "prettier --write '{src,.storybook,tasks}/**/*.{js,mjs,scss,json,html}' && stylelint --fix 'src/**/*.scss' && eslint --fix 'src/**/*.mjs'",
"package:sass": "sass --style=compressed --embed-sources src/nationalarchives:package/nationalarchives",
"package:scripts": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nationalarchives/tna-frontend.git"
},
"author": {
"name": "Andrew Hosgood",
"email": "[email protected]",
"url": "https://andrewhosgood.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nationalarchives/tna-frontend/issues"
},
"main": "nationalarchives/all.js",
"exports": {
".": {
"sass": "./nationalarchives/all.scss",
"require": "./nationalarchives/all.js"
},
"./nationalarchives/": "./nationalarchives/"
},
"sass": "nationalarchives/all.scss",
"engines": {
"npm": "9.x",
"node": "18.x"
},
"homepage": "https://github.com/nationalarchives/tna-frontend#readme",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@chromaui/addon-visual-tests": "^0.0.109",
"@mdx-js/react": "^2.1.3",
"@storybook/addon-a11y": "^7.5.1",
"@storybook/addon-docs": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-mdx-gfm": "^7.5.1",
"@storybook/html": "^7.5.1",
"@storybook/html-webpack5": "^7.5.1",
"@storybook/jest": "^0.2.3",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.2",
"axe-playwright": "^1.2.3",
"babel-loader": "^9.0.1",
"chromatic": "^7.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"diff": "^5.1.0",
"eslint": "^8.46.0",
"eslint-plugin-storybook": "^0.6.15",
"glob": "^10.2.7",
"jest-image-snapshot": "^6.2.0",
"jsdom": "^22.1.0",
"mdx-mermaid": "^2.0.0",
"node-self": "^1.0.2",
"nunjucks": "^3.2.3",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.64.2",
"sass-loader": "^13.0.2",
"simple-nunjucks-loader": "^3.2.0",
"storybook": "^7.5.1",
"style-loader": "^3.3.1",
"stylelint": "^15.10.2",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-selector-bem-pattern": "^3.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}