forked from turboext/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.67 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": "@turboext/components",
"version": "1.0.7",
"description": "Dev environment for custom user components in turbo",
"scripts": {
"start": "npm run build:registry && concurrently \"npm run watch:server\" \"webpack\" \"npm run watch:registry\"",
"start:dev": "nodemon -e ts -w server -x npm run watch:server",
"watch:server": "ts-node ./server/index.ts",
"build:registry": "ts-node tools/build-registry.ts",
"watch:registry": "ts-node tools/watch-registry.ts",
"build": "tsc -d -p .",
"lint": "concurrently \"npm run lint:style\" \"npm run lint:script\" \"npm run lint:filesystem\"",
"lint:fix": "concurrently \"npm run lint:style -- --fix\" \"npm run lint:script -- --fix\"",
"lint:style": "stylelint components/**/*.scss",
"lint:script": "eslint \"{components,server,lints}/**/*.{ts,tsx,js}\"",
"lint:filesystem": "ts-node tools/lint-filesystem.ts"
},
"files": [
"/components/**/*.js*",
"/components/**/*.d.ts",
"/components/**/*.scss"
],
"repository": {
"type": "git",
"url": "git+https://github.com/turboext/components.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/turboext/components/issues"
},
"homepage": "https://github.com/turboext/components#readme",
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"components/**/*.scss": "stylelint",
"components/**/*.*": "npm run lint:filesystem",
"{components,server,lints}/**/*.{ts,tsx,js}": "eslint"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@types/cheerio": "0.22.10",
"@types/dashify": "1.0.0",
"@types/express": "4.16.1",
"@types/fs-extra": "5.0.5",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.1",
"@types/request-promise": "4.1.42",
"@typescript-eslint/eslint-plugin": "1.4.2",
"autoprefixer": "9.4.7",
"babel-loader": "8.0.5",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"camel-case": "4.1.1",
"chalk": "2.4.2",
"cheerio": "1.0.0-rc.2",
"concurrently": "4.1.0",
"cross-spawn": "6.0.5",
"css-loader": "2.1.0",
"csswring": "7.0.0",
"dashify": "2.0.0",
"eslint": "5.14.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-local-rules": "0.1.0",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"express": "4.16.4",
"fork-ts-checker-webpack-plugin": "0.5.2",
"fs-extra": "7.0.1",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"mini-css-extract-plugin": "0.5.0",
"mocha": "6.1.4",
"nodemon": "1.18.9",
"pascal-case": "2.0.1",
"postcss-automath": "1.0.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.1.1",
"postcss-reporter": "6.0.1",
"postcss-scss": "2.0.0",
"postcss-url": "8.0.0",
"precss": "4.0.0",
"raw-loader": "1.0.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"request": "2.88.0",
"request-promise": "4.2.2",
"style-loader": "0.23.1",
"stylelint": "9.10.1",
"stylelint-config-recommended-scss": "3.2.0",
"stylelint-high-performance-animation": "1.1.1",
"stylelint-scss": "3.5.4",
"thread-loader": "2.1.2",
"ts-loader": "5.3.3",
"ts-node": "8.0.2",
"typescript": "3.2.4",
"typescript-eslint-parser": "22.0.0",
"webpack": "4.29.3",
"webpack-cli": "3.2.3"
}
}