-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "niftycss",
"version": "0.0.5",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"site"
],
"scripts": {
"build": "preconstruct build",
"watch": "preconstruct watch",
"generate-css-utilities": "node scripts/generate-css-utilities",
"test": "yarn test:lint && yarn test:specs",
"test:specs": "yarn jest --verbose",
"test:lint": "eslint . --ext .ts,.tsx",
"postinstall": "preconstruct dev",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@preconstruct/cli": "^2.0.7",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"extract-comments": "^1.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"preconstruct": {
"packages": [
"packages/core",
"packages/css",
"packages/dom",
"packages/react",
"packages/plugins",
"packages/plugin-autoprefixer",
"packages/plugin-important"
]
},
"dependencies": {
"@babel/preset-react": "^7.13.13"
}
}