-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "icon-garden",
"private": true,
"scripts": {
"compiler:code": "ts-node build/build-code.ts",
"compiler:clean": "rm -rf packages/*/src/icons",
"compiler": "npm run compiler:clean && npm run compiler:code",
"build:clean": "rm -rf packages/*/lib packages/*/es",
"build:source": "gulp",
"build": "npm run build:clean && npm run build:source",
"publish": "lerna publish from-package --registry=https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/gulp": "^4.0.9",
"@types/gulp-babel": "^6.1.30",
"@types/merge2": "^1.3.1",
"@types/node": "^17.0.29",
"@types/prettier": "^2.6.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/babel-preset-jsx": "^1.2.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"lerna": "^4.0.0",
"prettier": "2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}