-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.93 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
{
"scripts": {
"watch": "nx run-many --parallel=10 --target=watch --all",
"dev": "yarn clean; yarn build:dev; run-p watch serve",
"serve": "node live-server.js",
"serve:demo": "live-server demo --wait=1000 --mount=/:packages/core/dist --mount=/:packages/plugin-blog/dist --mount=/:packages/plugin-appwrite/dist",
"debug:test": "NODE_ENV=test node --inspect-brk node_modules/.bin/jest --runInBand --no-cache",
"build": "nx run-many --target=build --all",
"build:dev": "nx run-many --target=build:dev --all",
"clean": "nx run-many --target=clean --all",
"reset": "rimraf packages/*/node_modules; yarn clean; rm -rf node_modules",
"test": "NODE_ENV=test nx test",
"lint": "eslint ./packages/*/src/*",
"compile": "yarn build"
},
"devDependencies": {
"@nrwl/cli": "15.8.6",
"@nrwl/jest": "15.8.6",
"@nrwl/js": "15.8.6",
"@nrwl/nx-cloud": "^15.2.1",
"@types/jest": "^29.4.0",
"@types/node": "18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"compression-webpack-plugin": "^10.0.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"live-server": "^1.2.2",
"ngx-deploy-npm": "^5.2.0",
"npm-run-all": "^4.1.5",
"nx": "15.8.6",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.4.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5"
},
"workspaces": [
"packages/*"
],
"private": true,
"version": "2.2.0",
"name": "exothermicjs",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.5.0"
},
"packageManager": "[email protected]",
"sideEffects": false
}