-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 4.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "civil-pursuit",
"version": "2.1.1",
"description": "Civil Pursuit - so millions of people can deliberate productively online",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"start": "node dist/start.js",
"prepare": "bash build.sh",
"transpile": "babel app --ignore **/__tests__ --ignore **/ckeditor --out-dir dist --source-maps",
"hot-transpile": "babel --watch app --ignore **/__tests__ --ignore **/ckeditor --out-dir dist --source-maps",
"packbuild": "webpack --config webpack-prod.config.js",
"packstart": "npm run packbuild && node dist/server/start.js",
"client": "webpack serve --config webpack-dev.config.js",
"server": "nodemon --inspect dist/server/start.js",
"hot-client": "webpack-dev-server --config webpack-dev.config.js --devtool source-map --host 0.0.0.0",
"hot-server": "nodemon --inspect dist/start.js",
"dev": "echo \"these delays need to be kept up to date\" && concurrently -k \"npm run hot-transpile\" \"sleep 20 && npm run hot-server\" \"sleep 15 && npm run hot-client\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"svgr": "svgr --icon --filename-case kebab assets/svg --out-dir app/svgr",
"chromatic": "bash ./node_modules/.bin/chromatic",
"dbtest": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand --config ./jest-db.config.js --runTestsByPath"
},
"author": {
"email": "[email protected]",
"name": "David Fridley"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"node": "18.13.0"
},
"dependencies": {
"@codastic/react-positioning-portal": "^0.7.0",
"@enciv/mongo-collections": "^0.0.3",
"@jsonforms/core": "^3.2.1",
"@jsonforms/react": "^3.2.1",
"@jsonforms/vanilla-renderers": "^3.2.1",
"@shelf/jest-mongodb": "^4.3.2",
"autosize": "^3.0.15",
"bson-objectid": "^1.2.4",
"buffer": "^6.0.3",
"classnames": "^2.2.6",
"joi": "^17.13.3",
"lodash": "^4.17.11",
"log4js": "git+https://github.com/ddfridley/log4js-node.git#onbrowser",
"log4js-extend": "^0.2.1",
"mongodb": "^5.9.2",
"react": "^16.14.0",
"react-accessible-headings": "^4.2.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.8.4",
"react-jss": "^10.10.0",
"react-perfect-scrollbar": "^1.5.8",
"recharts": "^2.12.0",
"show-deep-diff": "github:ddfridley/show-deep-diff",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-react-inline-elements": "^7.16.0",
"@babel/plugin-transform-regenerator": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@svgr/cli": "^8.1.0",
"babel-loader": "^8.2.3",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"optionalDependencies": {
"@jest/globals": "^29.7.0",
"@storybook/addon-a11y": "^8.3.6",
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-viewport": "^8.3.6",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "^8.3.6",
"@storybook/cli": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/react-webpack5": "^8.3.6",
"@storybook/test": "^8.3.6",
"@storybook/test-runner": "^0.19.1",
"axe-playwright": "^1.2.3",
"chromatic": "^11.3.0",
"concurrently": "3.6.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"expect": "^23.6.0",
"jest": "^29.7.0",
"jest-enzyme": "^7.1.2",
"mongodb-memory-server": "^10.1.2",
"nodemon": "^2.0.15",
"storybook": "^8.3.6",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"civil-client": "github:EnCiv/civil-client",
"civil-server": "github:EnCiv/civil-server"
}
}