-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "fpjs-workshop",
"version": "1.0.0",
"type": "module",
"description": "⚡️ My workshop to teach FP principles in JavaScript",
"main": "deck.mdx",
"scripts": {
"test": "jest --watchAll",
"start": "mdx-deck deck.mdx",
"build": "mdx-deck build deck.mdx --no-html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/fpjs-workshop.git"
},
"keywords": [
"fp",
"reason",
"reasonml"
],
"author": "kutyel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kutyel/fpjs-workshop/issues"
},
"homepage": "https://github.com/kutyel/fpjs-workshop#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"babel-jest": "^24.9.0",
"file-loader": "^2.0.0",
"jest": "^24.9.0",
"mdx-deck": "^1.7.7",
"mdx-deck-code-surfer": "^0.5.3"
},
"dependencies": {
"accounting": "^0.4.1",
"crocks": "^0.12.4",
"ramda": "^0.26.1"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}