-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.1 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
{
"name": "@tetragius/raxy-core",
"version": "1.0.0",
"description": "raxy",
"main": "dist/index.js",
"scripts": {
"declarations:raxy": "tsc --project ./packages/raxy/tsconfig.json --emitDeclarationOnly",
"declarations:raxy-react": "tsc --project ./packages/raxy-react/tsconfig.json --emitDeclarationOnly",
"declarations:raxy-vue": "tsc --project ./packages/raxy-vue/tsconfig.json --emitDeclarationOnly",
"declarations:raxy-polyfill": "tsc --project ./packages/raxy-polyfill/tsconfig.json --emitDeclarationOnly",
"declarations:all": "npm run declarations:raxy; npm run declarations:raxy-react; npm run declarations:raxy-vue; npm run declarations:raxy-polyfill",
"clean": "rm -r ./packages/raxy/dist; rm -r ./packages/raxy-react/dist; rm -r ./packages/raxy-vue/dist; rm -r ./packages/raxy-plyfill/dist; ",
"webpack": "webpack",
"build": "build.sh",
"publish": "publish.sh",
"test": "cypress open"
},
"keywords": [
"raxy",
"react",
"proxy",
"state",
"vue"
],
"author": "Chertorylskiy Ilya Sergeevich",
"homepage": "https://github.com/Tetragius/raxy",
"repository": {
"type": "git",
"url": "https://github.com/Tetragius/raxy.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"babel-loader": "^8.0.6",
"cypress": "^6.5.0",
"nyc": "^15.1.0",
"react": "^16.14.0",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^4.1.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
}
}