-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 954 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 954 Bytes
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
{
"name": "realize-v2",
"private": true,
"scripts": {
"bootstrap": "cross-env NODE_ENV=development lerna bootstrap",
"build:examples": "run-s bootstrap build:packages build:examples-only",
"build:examples-only": "lerna run --parallel --scope example-* build",
"build:packages": "lerna run --scope @realize/core build && lerna run --parallel --scope @realize/* build",
"start:dev": "lerna run --parallel start:dev"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"lerna": "^3.14.1"
},
"dependencies": {
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"cross-env": "^5.2.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.5.2"
}
}