forked from phase2/particle
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
110 lines (110 loc) · 4.35 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
109
110
{
"name": "particle",
"version": "10.7.0",
"description": "A starter kit to build a design system shared to Pattern Lab and and Drupal",
"main": "",
"license": "GPL-2.0",
"author": {
"name": "Phase2 Technology",
"url": "https://github.com/phase2/"
},
"repository": {
"type": "git",
"url": "[email protected]:phase2/particle.git"
},
"keywords": [
"pattern-lab",
"prototyping"
],
"scripts": {
"dev:drupal": "./node_modules/.bin/cross-env-shell NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider \"webpack --watch --config ./apps/drupal-default/webpack.config.js\"",
"build:drupal": "./node_modules/.bin/cross-env-shell NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider \"webpack --hide-modules --config ./apps/drupal-default/webpack.config.js\"",
"lint:js": "eslint --ext .js,.vue ./",
"lint:css": "stylelint '**/*.css'",
"lint": "npm run lint:js; npm run lint:css;",
"fmt:js": "npm run lint:js -- --fix",
"fmt:css": "npm run lint:css -- --fix && prettier --write '**/*.css'",
"fmt:svg": "svgo -f ./source/default/_patterns/01-atoms/svg/icons --config=./.svgo.yml",
"fmt": "npm run fmt:svg; npm run fmt:js; npm run fmt:css; prettier --write .",
"test:backstop:ref": "node tools/tests/vrt/backstop-example-reference.js",
"test:backstop:test": "node tools/tests/vrt/backstop-example-test.js",
"test:pa11y": "pa11y-ci --config tools/tests/accessibility/pa11y.js",
"test:unit:default": "NODE_ENV=test jest --projects source/default/",
"test:unit": "npm run test:unit:default",
"test:tools:generators": "NODE_ENV=test jest --projects tools/generators/",
"test": "npm run test:unit",
"ci": "npm run lint && npm run test && npm run build:drupal"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"core-js": "^3.6.5",
"enquire": "^0.0.2",
"holderjs": "^2.9.7",
"jquery": "^3.5.1",
"lodash": "^4.17.19",
"prismjs": "^1.20.0",
"regenerator-runtime": "^0.13.7",
"svg4everybody": "^2.1.9",
"tailwindcss": "^2.0.3",
"vue": "^2.6.11",
"vuex": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@tailwindcss/forms": "^0.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.1",
"jest": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-vue-preprocessor": "^1.7.1",
"jsondiffpatch": "^0.4.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pa11y": "^5.3.0",
"pa11y-ci": "^2.3.0",
"postcss": "^8.4.40",
"postcss-cli": "^7.1.2",
"postcss-hexrgba": "^2.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"prettier": "^2.0.5",
"prettier-plugin-twig-melody": "^0.4.6",
"pretty-quick": "^2.0.1",
"resolve-url-loader": "^3.1.1",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"svg-spritemap-webpack-plugin": "^3.5.7",
"svgo": "^1.3.2",
"terser-webpack-plugin": "^3.0.7",
"url-loader": "^4.1.0",
"vue-jest": "^3.0.6",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"vue-testing-library": "^0.17.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"yo": "^3.1.1"
}
}