-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.58 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
{
"name": "factorial-patterns",
"license": "MIT",
"repository": "https://github.com/factorial-io/factorial-patterns",
"devDependencies": {
"@factorial/frontend-stack-core": "^0.5.0",
"gh-pages": "^1.1.0",
"lerna": "^2.2.0",
"modernizr": "^3.5.0",
"neutrino": "^8.3.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build": "lerna bootstrap && yarn run build:css-js && lerna clean --yes && yarn run build:pattern-lab && yarn run build:modernizr",
"build:css-js": "yarn run neutrino build --use @factorial/frontend-stack-core --options.env.NODE_ENV production",
"build:modernizr": "modernizr -c modernizr-config.json -d public/modernizr-custom.js -u",
"build:pattern-lab": "php core/console --generate",
"dev": "php core/console --server",
"deploy": "gh-pages -d public",
"start": "yarn run neutrino start --use @factorial/frontend-stack-core",
"lint": "npm-run-all lint:*",
"lint:css": "yarn run neutrino stylelint",
"lint:js": "yarn run neutrino lint",
"fix": "npm-run-all fix:*",
"fix:css": "yarn run neutrino stylelint --fix",
"fix:js": "yarn run neutrino lint --fix"
},
"dependencies": {
"factorial-components-flex-embed": "^0.3.0",
"factorial-components-image": "^0.2.0",
"factorial-components-modal": "^0.3.0",
"factorial-components-pagination": "^0.3.0",
"factorial-components-rte": "^0.2.0",
"factorial-utils-font": "^1.2.0",
"factorial-utils-font-weight": "^0.3.0",
"factorial-utils-margin": "^1.2.0",
"factorial-utils-padding": "^1.2.0",
"suitcss-components-test": "^1.0.0"
}
}