-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"private": true,
"version": "0.0.5-alpha.1",
"scope": "@algebraic-effects",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node ./scripts/build.js",
"watch": "yarn build --watch",
"lint": "eslint ./packages/**/src/**/*.js",
"test": "jest --config ./scripts/jest.config.js --watch",
"bench": "yarn test --testRegex \"packages/.*\\.bench\\.js$\"",
"test:ci": "jest --config ./scripts/jest.config.js --coverage",
"coverage:ci": "codecov",
"publish-all": "node ./scripts/publish.js",
"docs": "node ./scripts/docs.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@mdx-js/loader": "^0.16.8",
"@mdx-js/runtime": "^0.16.8",
"@types/jest": "^25.1.3",
"@types/node": "^10.12.21",
"@types/ramda": "^0.25.47",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"@types/styled-components": "^4.1.6",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babel-preset-react-app": "^7.0.0",
"chalk": "^2.4.2",
"codecov": "^3.6.5",
"eslint": "^5.12.0",
"eslint-plugin-react": "^7.12.4",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"jest": "^24.5.0",
"node-watch": "^0.6.0",
"pipey": "^0.0.4",
"ramda": "^0.26.1",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"remark-emoji": "^2.0.2",
"remark-highlight.js": "^5.1.0",
"remark-slug": "^5.1.1",
"styled-components": "^4.1.3",
"terser-webpack-plugin": "^1.2.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^4.29.0"
}
}