-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.01 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
69
70
71
72
73
74
{
"name": "noxtron",
"version": "0.7.6",
"publishConfig": {
"access": "public"
},
"description": "Real-Time JavaScript/TypeScript UI playground",
"keywords": [
"javascript",
"typescript",
"sandbox",
"playground",
"ui",
"application",
"real-time",
"realtime"
],
"homepage": "https://github.com/romelperez/noxtron",
"repository": {
"type": "git",
"url": "https://github.com/romelperez/noxtron.git"
},
"funding": "https://github.com/sponsors/romelperez",
"license": "MIT",
"workspaces": [
"examples/*"
],
"files": [
"build"
],
"types": "./build/cjs/index.d.ts",
"devDependencies": {
"@emotion/react": "^11.9.0",
"@mdi/react": "^1.6.0",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.182",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.13",
"@types/react-router-dom": "^5.3.3",
"cross-env": "^7.0.3",
"effector": "^22.3.0",
"effector-react": "^22.0.6",
"esbuild": "^0.14.43",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.33.0",
"prettier": "^2.6.2",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"serve": "^13.0.2",
"ts-jest": "^28.0.4",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"scripts": {
"prepare": "husky install",
"lint": "prettier --check .",
"lint-fix": "prettier --write .",
"test": "jest",
"test-watch": "jest --watch",
"clean": "rm -rf ./build && rm -f .tsbuildinfo",
"build-cjs": "tsc -p ./tsconfig.build.cjs.json",
"build-umd": "cross-env NODE_ENV=production node ./build.umd.js",
"build": "npm run clean && npm run build-cjs && npm run build-umd",
"dev-cjs": "tsc -p ./tsconfig.build.cjs.json --watch",
"dev-umd": "node ./build.umd.js",
"integration": "npm run clean && npm run build && npm run lint && npm run test",
"prepublishOnly": "npm run integration"
}
}