-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.67 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": "nucifera",
"version": "0.0.1",
"description": "Lotus Notes as it should have been!",
"engines": {
"node": "^14"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenfrancis/nucifera.git"
},
"author": "Stephen Francis <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"build": "cd src && NODE_ENV=production rollup --config config/rollup.config.js",
"clean": "rm -f -r .cache dist/*",
"compile:template-schema": "typescript-json-schema src/tsconfig.json Template > src/schemas/template.json",
"compile:view-schema": "typescript-json-schema src/tsconfig.json View > src/schemas/view.json",
"server": "cd build/couch-server && node ../../src/server/pouch.js",
"start": "cd src && NODE_ENV=development rollup --watch --config config/rollup.config.js",
"test": "jest ./packages --forceExit",
"test:all": "yarn test:integration",
"test:cypress": "yarn run cypress run --config-file src/test/cypress.json",
"test:integration": "yarn run start & yarn run wait-on http://localhost:4444/ && yarn run test:cypress",
"tsc": "tsc -p src/tsconfig.json --noEmit",
"validate": "node src/schemas/validate.js"
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"pouchdb": "^7.2",
"pouchdb-find": "^7.2",
"pouchdb-server": "^4.2.0",
"react": "^17.0.2",
"react-autosize-textarea": "^7.1",
"react-dom": "^17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"typescript": "4.5.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@types/pouchdb": "^6.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"ajv": "^8.10.0",
"cypress": "^9.4.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"rollup": "^2.70.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-serve": "^1.1.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript-json-schema": "^0.53.0",
"wait-on": "^6.0.0"
},
"bugs": {
"url": "https://github.com/stephenfrancis/nucifera/issues"
}
}