-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
145 lines (145 loc) · 4.65 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "atomizer-mono",
"version": "1.0.0",
"private": true,
"description": "Atomizer CSS monorepo, this package should not be published",
"contributors": [
{
"name": "Renato Iwashima",
"email": "[email protected]"
},
{
"name": "Steve Carlson",
"email": "[email protected]"
},
{
"name": "Thierry Koblentz",
"email": "[email protected]"
},
{
"name": "Seth Bertalotto",
"email": "[email protected]"
}
],
"scripts": {
"atomizer:docs": "atomizer --quiet -R -o ./app/assets/css/atomic.css",
"atomizer:examples": "atomizer --quiet -R -c ./examples/atomizer.config.js -o ./examples/css/atomic.css",
"build": "npm run build:docs && npm run build --workspaces --if-present",
"build:docs": "npm run atomizer:docs && npm run postcss && npm run webpack:prod",
"build:index": "node scripts/buildSearch.mjs",
"dev": "concurrently \"npm run atomizer:docs -- -w\" \"npm run postcss -- -w\" \"npm run webpack:dev\" \"docker compose up\"",
"examples": "concurrently \"npm run atomizer:examples\" \"live-server examples --wait 500\"",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint --ext .js,jsx .",
"postcss": "postcss app/assets/css/main.css -o docs/assets/css/main.css",
"postbuild:docs": "npm run build:index",
"predev": "npm run build:index",
"publish": "changeset publish",
"test": "npm run test --workspaces --if-present",
"version": "changeset version",
"webpack:dev": "webpack --config webpack.config.js --config-name dev",
"webpack:prod": "webpack --config webpack.config.js --config-name prod"
},
"engines": {
"node": ">=20.0",
"npm": ">=10.0"
},
"workspaces": [
"packages/*",
"site"
],
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@changesets/cli": "^2.27.1",
"@lodder/grunt-postcss": "^3.1.1",
"@types/core-js": "^2.5.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"ajv": "^8.13.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"browserslist": "^4.22.2",
"chai": "^4.3.9",
"codemirror": "^5.65.7",
"concurrently": "^8.2.2",
"coveralls": "^3.1.1",
"cssnano": "^6.0.2",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-react": "^7.30.1",
"file-saver": "^2.0.5",
"fluxible": "^1.4.2",
"fluxible-addons-react": "^1.2.0",
"glob": "^10.3.12",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jszip": "^3.10.0",
"lint-staged": "^15.2.0",
"live-server": "^1.2.2",
"load-grunt-tasks": "^5.1.0",
"lunr": "^2.3.9",
"marked": "^12.0.1",
"mocha": "^10.0.0",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"rollup": "^4.17.2",
"shelljs": "^0.8.5",
"stealthy-require": "^1.1.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.2.7",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/acss-io/atomizer.git"
},
"keywords": [
"atomic",
"atomize",
"atomizer",
"atomizr",
"css"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/acss-io/atomizer/issues"
},
"homepage": "https://github.com/acss-io/atomizer",
"browserslist": "> 1%, not op_mini all",
"prettier": {
"embeddedLanguageFormatting": "off",
"printWidth": 120,
"proseWrap": "never",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint -- --fix"
],
"**/*.*": [
"npm run format:fix"
]
},
"dependencies": {
"commander": "^11.1.0"
}
}