-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 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
{
"name": "re-fp",
"version": "0.0.0-development",
"author": "snatvb",
"scripts": {
"commit": "git-cz",
"build": "bsb -make-world",
"start": "cross-env BS_WATCH_CLEAR=true concurrently \"bsb -make-world -w\" \"webpack\"",
"clean": "bsb -clean-world",
"test": "is-ci \"test:ci\" \"test:watch\"",
"test:ci": "jest",
"test:watch": "jest --watch",
"webpack": "cross-env NODE_ENV=development webpack -w",
"webpack:production": "cross-env NODE_ENV=production webpack",
"vercel-build": "rimraf dist && npm run build && npm run webpack:production",
"semantic-release": "semantic-release"
},
"keywords": [
"ReScript",
"Functional",
"FP",
"ReasonML",
"BuckleScript",
"BS"
],
"files": [
"src",
"bsconfig.json"
],
"license": "MIT",
"dependencies": {
"@ryyppy/rescript-promise": "^2.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"bs-platform": "9.0.2",
"commitizen": "4.2.4",
"concurrently": "6.2.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"is-ci-cli": "2.2.0",
"jest": "27.0.6",
"rimraf": "3.0.2",
"semantic-release": "^17.4.4",
"webpack": "5.48.0",
"webpack-cli": "4.7.2"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"roots": [
"tests"
],
"testMatch": [
"**/*.bs.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(bs-platform)/)"
]
},
"repository": {
"type": "git",
"url": "https://github.com/snatvb/re-fp.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}