This repository was archived by the owner on Feb 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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
{
"name": "@component-sheet/monorepo",
"private": true,
"version": "0.0.1",
"description": "Base lerna repo for @component-sheet",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ariabuckles/component-sheet.git"
},
"author": "Aria Buckles (https://github.com/ariabuckles)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ariabuckles/component-sheet/issues"
},
"scripts": {
"format": "prettier --write 'packages/*/{src,tests}/**/*.js'",
"build": "lerna run build",
"clean": "lerna run clean",
"test": "lerna link && jest"
},
"homepage": "https://github.com/ariabuckles/component-sheet#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@khanacademy/wonder-blocks-core": "^2.0.1",
"aphrodite": "^2.2.3",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"lerna": "^3.11.1",
"prettier": "^1.16.4",
"react": "^16.8.1",
"react-art": "^16.8.1",
"react-dom": "^16.8.1",
"react-native-web": "^0.10.0",
"react-router-dom": "^4.3.1",
"react-testing-library": "^5.6.1",
"user-event": "^1.4.4"
},
"dependencies": {
"@component-sheet/aphrodite": "file:packages/aphrodite",
"@component-sheet/core": "file:packages/core",
"@component-sheet/native": "file:packages/native"
}
}