-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
{
"name": "@exercism/monorepo",
"description": "Exercism exercises in Javascript.",
"author": "Joe Sharp",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joe-sharp/exercism-exercises"
},
"workspaces": [
"javascript/*"
],
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@exercism/eslint-config-javascript": "^0.5.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.9.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.2.4",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"core-js": "^3.17.2",
"eslint": "^7.32.0",
"jest": "^27.2.4",
"jest-haste-map": "^27.2.4",
"jest-resolve": "^27.2.4",
"jest-styled-components": "^7.0.5",
"lerna": "^4.0.0",
"react-test-renderer": "^17.0.2",
"webpack": "^5.57.1"
},
"scripts": {
"build": "lerna exec --parallel -- babel --root-mode upward src -d lib --ignore **/*.story.js,**/*.spec.js",
"test": "jest --no-cache ./*",
"watch": "jest --no-cache --watch ./*",
"lint": "eslint .",
"bootstrap": "lerna bootstrap --use-workspaces"
},
"dependencies": {
"regenerator-runtime": "^0.13.9"
}
}