-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
116 lines (116 loc) · 3.31 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
111
112
113
114
115
116
{
"name": "fractal",
"private": true,
"dependencies": {
"@allmarkedup/fang": "^2.0.0",
"anymatch": "^3.1.2",
"bluebird": "^3.7.2",
"browser-sync": "^2.26.14",
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"cli-table3": "^0.6.0",
"co": "^4.6.0",
"columnify": "^1.5.4",
"execa": "^5.0.0",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"get-port": "^5.1.1",
"globby": "^11.0.3",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"highlight.js": "^10.7.2",
"inquirer": "^7.3.3",
"istextorbinary": "^5.15.0",
"js-beautify": "^1.13.13",
"js-yaml": "^4.1.0",
"liftoff": "^3.1.0",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"marked": "^2.0.3",
"mime": "^2.5.2",
"minimist": "^1.2.5",
"mixwith": "^0.1.1",
"nunjucks": "^3.2.3",
"parent-module": "^2.0.0",
"path-to-regexp": "^6.2.0",
"promised-handlebars": "^2.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"readable-stream": "^3.6.0",
"require-all": "^3.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.5",
"throat": "^6.0.1",
"twig": "^1.15.4",
"update-notifier": "^5.1.0",
"vinyl": "^2.2.1",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"core-js": "^3.12.1",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"expose-loader": "^2.0.0",
"file-loader": "^6.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jquery": "^3.6.0",
"jquery-pjax": "^2.0.1",
"jquery-resizable-dom": "^0.35.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"mark.js": "^8.11.1",
"mini-css-extract-plugin": "^1.6.0",
"mock-argv": "^1.1.15",
"mock-fs": "^4.14.0",
"node-fetch": "^2.6.1",
"normalize.css": "^8.0.1",
"postcss": "^8.2.13",
"postcss-loader": "^5.2.0",
"prettier": "^2.3.1",
"regenerator-runtime": "^0.13.7",
"resolve-url-loader": "^4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.32.13",
"sass-loader": "^11.0.1",
"sass-mq": "^5.0.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0"
},
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap --hoist --strict --ci --force-local",
"eslint": "eslint . --ignore-path .gitignore",
"stylelint": "stylelint --ignore-path .gitignore \"**/*.scss\"",
"validate": "npm run eslint && npm run stylelint",
"format": "npm run eslint -- --fix",
"test": "npm run validate && npm run test:unit && lerna run test",
"test:unit": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{css,scss}": "stylelint --fix"
}
}