forked from ogre-works/ogre-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.45 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
67
68
{
"name": "ogre-tools",
"version": "0.0.1",
"description": "An assortment of tools for brutal software development.",
"workspaces": [
"packages/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/ogre-tools.git"
},
"scripts": {
"code-style:verify": "lerna run code-style:verify",
"code-style:fix": "lerna run code-style:fix",
"install-all-packages": "npm install",
"reinstall-all-dependencies": "./npm-scripts/reinstall-all-dependencies.sh",
"build-all-packages": "npm run remove-all-package-builds && lerna run build",
"build-and-publish": "npm run remove-all-package-builds && npm run test:ci && npm run build-all-packages && lerna publish --yes && npm run remove-all-package-builds",
"remove-all-package-builds": "find ./packages -name build -type d -prune -exec rm -rfv {} \\;",
"test": "jest --watch-all",
"test:performance": "jest --watch --testMatch \"**/?(*.)+(performance-test).[jt]s?(x)\"",
"test:inspector": "node --inspect-brk ./node_modules/.bin/jest --watch --runInBand",
"test:ci": "ogre-tools-test",
"test:types": "lerna run test:types --parallel --stream",
"test:types:watch": "lerna watch -- lerna run test:types --scope=\\$LERNA_PACKAGE_NAME --stream",
"open-github-in-browser": "open https://github.com/lensapp/ogre-tools",
"postinstall": "husky install"
},
"keywords": [],
"author": "Ogre Works",
"license": "MIT",
"devDependencies": {
"@async-fn/jest": "^1.6.4",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.194",
"@types/react": "^17.0.37",
"@types/webpack-env": "^1.16.3",
"babel-loader": "^8.1.0",
"husky": "^7.0.4",
"lerna": "^8.1.9",
"lodash": "^4.17.21",
"mobx": "^6.12.4",
"mobx-react": "^9.1.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"timers": "^0.1.1",
"type-fest": "^2.12.0",
"typescript": "^4.5.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"bugs": {
"url": "https://github.com/lensapp/ogre-tools/issues"
},
"homepage": "https://github.com/lensapp/ogre-tools#readme",
"dependencies": {
"ts-loader": "^9.4.1"
}
}