-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.51 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
60
61
62
63
64
65
66
{
"scripts": {
"start": "concurrently \"yarn run start:core\" \"yarn run start:monitor\" \"yarn run start:example-native\" ",
"start:example-native": "cd examples/native && yarn start",
"start:example-web-app": "cd examples/webapp && yarn start",
"start:examples": "concurrently \"yarn run start:example-web-app\" \"yarn run start:example-native\"",
"start:electron:monitor": "cd packages/monitor && yarn run start:electron",
"start:electron:watch": "cd packages/monitor && yarn run watch:electron",
"start:core": "cd packages/core && yarn start",
"start:react": "cd packages/react && yarn start",
"start:monitor": "cd packages/monitor && yarn start",
"build": "lerna run build",
"build:monitor": "cd packages/monitor && yarn run build",
"build:electron-renderer": "cd packages/monitor/renderer && yarn run build",
"build:electron-main": "cd packages/monitor && yarn run build:electron-main",
"build:core": "cd packages/core && yarn run build",
"build:react": "cd packages/react && yarn run build",
"build:performance": "cd packages/performance && yarn run build",
"build:@speedsters": "yarn run build:core && yarn run build:react && yarn run build:performance",
"publish:type": "cd packages/type && npm publish --access public",
"publish:core": "cd packages/core && npm publish --access public",
"publish:react": "cd packages/react && npm publish --access public",
"publish:performance": "cd packages/performance && npm publish --access public",
"publish:packages": "yarn run publish:type && yarn run publish:core && yarn run publish:react && yarn run publish:performance",
"clean": "lerna run clean",
"test": "lerna run test"
},
"private": true,
"workspaces": {
"packages": [
"packages/**/*"
],
"nohoist": [
"**/react-native/**",
"**/electron-builder/**",
"**/node-pre-gyp/**"
]
},
"keywords": [
"speedsters performance",
"performance",
"react-native test",
"react-native test performance",
"react performance",
"speed test",
"performance.now"
],
"author": "Diego Oliveira",
"license": "MIT",
"devDependencies": {
"@types/jest": "23.3.1",
"@types/ws": "6.0.0",
"babel-jest": "23.4.2",
"concurrently": "3.6.1",
"copyfiles": "^2.1.0",
"devtron": "^1.4.0",
"electron-reload": "^1.2.5",
"jest": "23.4.2",
"lerna": "^3.4.3",
"rimraf": "^2.6.2",
"ts-jest": "23.1.2",
"ts-node": "7.0.0",
"typescript": "3.0.1",
"wait-on": "2.1.0"
}
}