-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "record-tuple",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/helper-plugin-test-runner": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^25.1.0",
"babel-loader": "^8.1.0",
"buffer": "^6.0.3",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"file-loader": "^6.0.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"jest-diff": "^24.9.0",
"lerna": "^3.18.3",
"monaco-editor": "^0.20.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"path": "^0.12.7",
"prettier": "^1.19.1",
"process": "^0.11.10",
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.4.0",
"style-loader": "^1.1.3",
"util": "^0.12.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "rollup -c",
"build-playground": "webpack --mode production",
"watch": "rollup -c -w",
"watch-playground": "webpack --watch --mode development",
"lint": "eslint .",
"fix": "eslint . --fix",
"test": "node --harmony-weak-refs-with-cleanup-some --expose-gc node_modules/jest/bin/jest.js",
"test-watch": "node --harmony-weak-refs-with-cleanup-some --expose-gc node_modules/jest/bin/jest.js --watch",
"repl": "node --harmony-weak-refs scripts/repl.js"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}