-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "astly",
"version": "0.0.1",
"main": "index.js",
"license": "GPLv3",
"repository": "[email protected]:fabulascode/astly.git",
"author": "Michael Edelman <[email protected]>",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"publish-canary": "lerna publish --canary --yes",
"publish-next": "lerna publish --npm-tag=next --bump=prerelease",
"pub": "lerna publish",
"start": "lerna run start",
"ios": "yarn workspace astlyshowcase ios"
},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-replace": "^2.2.1",
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-native": "^0.60.25",
"@types/styled-components": "^4.4.1",
"@types/styled-system": "^5.1.4",
"@wessberg/cjs-to-esm-transformer": "^0.0.15",
"@wessberg/rollup-plugin-ts": "^1.1.83",
"awesome-typescript-loader": "^5.2.1",
"concurrently": "^5.0.2",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"normalize": "^0.3.1",
"prettier": "^1.19.1",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-jscc": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-prepack": "^1.0.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
}
}