-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "drmayday",
"version": "0.3.1",
"scripts": {
"build": "bsb -make-world",
"dev": "nodemon lib/js/src/Server.bs.js",
"server": "node lib/js/src/Server.bs.js",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"release": "standard-version",
"tag": "git push --follow-tags origin master",
"test": "jest --watchAll",
"test:once": "jest"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@ahrefs/bs-dotenv": "^1.0.3",
"@commitlint/cli": "^7.3.1",
"@commitlint/config-conventional": "^7.3.1",
"@glennsl/bs-jest": "^0.4.5",
"@glennsl/bs-json": "^3.0.0",
"@nireno/reasonably-typed": "^0.8.0",
"bs-axios": "0.0.39",
"bs-express": "^0.9.0",
"bs-platform": "^4.0.18",
"husky": "^1.3.1",
"jest": "^24.0.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"bs-mysql2": "^8.2.1",
"bs-node": "github:reasonml-community/bs-node",
"date-fns": "^1.29.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"jsonwebtoken": "8.5.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run test:once",
"pre-push": "npm run test:once"
}
}
}