-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "temperature-average",
"version": "0.0.0",
"description": "",
"main": "lib/server.js",
"module": "src/server.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest --coverage",
"start": "node --experimental-json-modules ./src/fetchData.mjs",
"serve": "node --experimental-json-modules ./src/server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/temperature-average.git"
},
"keywords": [],
"author": "EscapedGibbon",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/temperature-average/issues"
},
"homepage": "https://github.com/cheminfo/temperature-average#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@types/jest": "^27.5.0",
"eslint": "^8.19.0",
"eslint-config-cheminfo": "^7.3.0",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"rollup": "^2.72.0"
},
"dependencies": {
"@fastify/reply-from": "^8.2.1",
"@fastify/static": "^6.5.0",
"better-sqlite3": "^7.6.0",
"config": "^3.3.7",
"delay": "^5.0.0",
"fastify": "^4.2.1",
"fastify-plugin": "^4.0.0",
"pino-pretty": "^9.1.0",
"sequelize": "^6.21.4",
"sqlite3": "^5.0.11"
}
}