-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "BabylonNext",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"repos/*"
],
"nohoist": []
},
"scripts": {
"dev": "yarn workspace web dev",
"web": "yarn workspace web dev",
"build": "yarn workspace web build",
"start": "yarn workspace web start",
"scan": "./node_modules/.bin/madge --circular repos --exclude 'node_modules/'",
"test": "yarn scan && jest",
"reset": "yarn clear && yarn cache clean && yarn",
"clear": "yarn delete yarn.lock node_modules repos/core/node_modules repos/web/node_modules",
"delete": "rimraf"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.0",
"@testing-library/react": "10.4.3",
"babel-jest": "26.1.0",
"babel-plugin-import-graphql": "2.8.1",
"babel-plugin-lodash": "3.3.4",
"concurrently": "5.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.1.0",
"jest-transform-graphql": "2.1.0",
"madge": "3.9.2",
"react-test-renderer": "16.13.1",
"rimraf": "3.0.2"
}
}