-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.84 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
73
74
75
76
77
{
"name": "ark.db",
"description": "Smallest and fastest JSON database for Node, Electron and browser.",
"version": "2.7.1",
"main": "dist",
"types": "types/index.d.ts",
"keywords": [
"json",
"jsondb",
"ark",
"arks",
"theark",
"stark",
"thearkxd",
"starkxd"
],
"scripts": {
"test": "mocha tests/*.test.js",
"format": "prettier --write .",
"build": "tsc",
"webpack": "webpack --mode production",
"webpack:dev": "webpack --mode development",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/thearkxd/ark.db"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"graceful-fs": "^4.2.6",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2",
"mongoose": "^5.12.9",
"parent-module": "^2.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.14.5",
"@types/chai": "^4.2.19",
"@types/graceful-fs": "^4.1.5",
"@types/lodash.get": "^4.4.6",
"@types/lodash.has": "^4.5.6",
"@types/lodash.set": "^4.3.6",
"@types/lodash.unset": "^4.5.6",
"@types/mocha": "^8.2.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.5",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"ts-loader": "^9.2.3",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
}
}