generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 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
{
"name": "@rosalind/rosalind-template",
"private": true,
"version": "1.0.0",
"description": "Starter franklin project with the Rosalind Template",
"scripts": {
"test": "wtr \"./test/**/*.test.js\" --node-resolve --port=2000 --coverage",
"test:watch": "npm test -- --watch",
"lint:js": "eslint .",
"lint:css": "stylelint 'blocks/**/*.post.css' 'components/**/*.post.css' 'styles/*.post.css' --fix",
"lint": "npm run lint:js && npm run lint:css",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run build-storybook --quiet && npx http-server storybook --port 6006 --silent\" \"wait-on tcp:6006 && npm run test-storybook\"",
"build-storybook": "storybook build -o ./storybook && node ./bin/no-jekyll.js",
"dev": "concurrently \"npm run franklin:up\" \"npm run design-system:dev\"",
"franklin:up": "npx @adobe/helix-cli up",
"design-system:transform": "node ./bin/transform.mjs",
"design-system:validate": "node ./bin/validate-system.mjs",
"design-system:build": "gulp build",
"design-system:dev": "gulp dev",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylandepass/rosalind-template.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/dylandepass/rosalind-template/issues"
},
"homepage": "https://github.com/dylandepass/rosalind-template#readme",
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@dylandepass/franklin-storybook-addon": "0.0.54",
"@esm-bundle/chai": "4.3.4-fix.0",
"@storybook/addon-a11y": "7.0.0-beta.64",
"@storybook/addon-coverage": "0.0.8",
"@storybook/addon-essentials": "7.0.0-beta.64",
"@storybook/addon-interactions": "7.0.0-beta.64",
"@storybook/addon-links": "7.0.0-beta.64",
"@storybook/addon-mdx-gfm": "7.0.0-beta.64",
"@storybook/blocks": "7.0.0-beta.64",
"@storybook/html": "7.0.0-beta.64",
"@storybook/html-webpack5": "^7.0.0-beta.64",
"@storybook/jest": "0.0.11-next.0",
"@storybook/test-runner": "0.10.0-next.10",
"@storybook/testing-library": "0.0.14-next.1",
"@web/test-runner": "0.14.0",
"@web/test-runner-commands": "0.6.5",
"chai": "4.3.6",
"concurrently": "7.4.0",
"cssnano": "5.1.14",
"dedent": "0.7.0",
"eslint": "8.24.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-storybook": "0.6.11",
"gulp": "4.0.2",
"gulp-header": "2.0.9",
"gulp-plumber": "1.2.1",
"gulp-postcss": "9.0.1",
"gulp-rename": "2.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-util": "3.0.8",
"http-server": "14.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"merge-stream": "2.0.0",
"postcss": "8.4.18",
"postcss-import": "14.1.0",
"postcss-mixins": "9.0.2",
"postcss-preset-env": "7.8.2",
"prettier": "^2.8.7",
"react": "18.0.0",
"react-dom": "18.0.0",
"sinon": "14.0.1",
"storybook": "7.0.0-beta.64",
"style-dictionary": "3.7.1",
"stylelint": "15.3.0",
"stylelint-config-recommended": "^11.0.0",
"token-transformer": "0.0.28",
"vite": "4.0.4",
"wait-on": "6.0.1"
},
"lint-staged": {
"*.js": "eslint",
"*.css": "stylelint",
"*.post.css": "stylelint"
}
}