-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2 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": "notion-take-home",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"nuke:build": "rm -rf build tsconfig.tsbuildinfo",
"nuke:node": "rm -rf node_modules yarn.lock && yarn cache clean",
"nuke": "yarn nuke:build && yarn nuke:node",
"reinstall": "yarn nuke:node && yarn install",
"build": "yarn nuke:build && tsc && tsc-alias",
"start": "yarn build && cross-env NODE_ENV=production node -r tsconfig-paths/register build/index.js",
"ts-run": "ts-node -r tsconfig-paths/register",
"dev": "cross-env NODE_ENV=development nodemon",
"prod": "yarn build && yarn start",
"test:all": "yarn test:types && yarn lint && yarn format && yarn build && yarn test",
"test:types": "yarn nuke:build && tsc --pretty --noEmit",
"test:watch": "yarn test --watchAll",
"test": "jest --clearCache && jest --forceExit --detectOpenHandles --no-cache",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"format": "prettier -w . && yarn lint --fix"
},
"dependencies": {
"@notionhq/client": "^1.0.4",
"chalk": "4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"lodash.mergewith": "^4.6.2",
"papaparse": "^5.3.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@faker-js/faker": "^6.1.2",
"@types/jest": "^27.4.1",
"@types/lodash.mergewith": "^4.6.7",
"@types/node": "^17.0.23",
"@types/papaparse": "^5.3.2",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"jest-runner-groups": "^2.1.0",
"jest-watch-typeahead": "^1.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-alias": "^0.0.3-1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.5",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}