-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.28 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
{
"name": "civic-news-reader",
"version": "0.0.0",
"description": "A news reader for civic tech apps\"",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node --max_old_space_size=460 dist/start.js",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"svgr": "svgr --icon --filename-case kebab assets/svg --out-dir app/svgr",
"transpile": "babel app --ignore **/__tests__ --out-dir dist --source-maps",
"hot-transpile": "babel --watch app --ignore **/__tests__ --out-dir dist --source-maps",
"prepare": "bash build.sh",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cypress": "cypress open",
"cypress:headless": "cypress run --headless --browser chrome",
"mongo:delete-user": "bash -c 'mongo --eval \"db.users.remove({email: \\\"$0\\\"})\"'",
"hot-server": "nodemon --inspect dist/start.js",
"hot-server-no-inspect": "nodemon dist/start.js",
"hot-client": "webpack-dev-server --config webpack-dev.config.js --devtool source-map --host 0.0.0.0",
"packbuild": "webpack --config webpack-prod.config.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\"",
"dev-no-inspect": "echo \"these delays need to be kept up to date\" && concurrently -k \"npm run hot-transpile\" \"sleep 20 && npm run hot-server-no-inspect\" \"sleep 15 && npm run hot-client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnCiv/civic-news-reader.git"
},
"keywords": [
"civic-tech",
"civic-innovation",
"news",
"democracy",
"react",
"node",
"mongo"
],
"author": "EnCiv volunteers",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/EnCiv/civic-news-reader/issues"
},
"homepage": "https://github.com/EnCiv/civic-news-reader#readme",
"dependencies": {},
"optionalDependencies": {
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^27.4.4",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"webpack-dev-server": "^4.6.0",
"@shelf/jest-mongodb": "^2.2.0",
"concurrently": "^6.4.0",
"cypress": "^9.1.1"
},
"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": "^6.1.2",
"babel-loader": "^8.2.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"civil-client": "github:EnCiv/civil-client",
"civil-server": "github:EnCiv/civil-server"
}
}