-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 KB
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
{
"name": "codeleak",
"version": "0.0.0-semantically-released",
"main": "index.js",
"author": "",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@sentry/browser": "^5.6.2",
"@stackblitz/sdk": "^1.3.0",
"@zeit/next-source-maps": "0.0.4-canary.1",
"antd": "^3.20.7",
"axios": "^0.18.0",
"draft-js": "^0.10.5",
"draft-js-export-html": "^1.3.3",
"draft-js-plugins-editor": "^2.1.1",
"express": "^4.16.4",
"js-cookie": "^2.2.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"next": "^9.0.3",
"next-compose-plugins": "^2.1.1",
"next-cookies": "^1.1.3",
"pm2": "^3.5.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-quill": "^1.3.3",
"react-spring": "^8.0.27",
"styled-components": "^4.3.1"
},
"scripts": {
"setup:dev": "/bin/bash setup.sh",
"setup:db": "/bin/bash initial-db-setup.sh",
"dev:api": "docker-compose -f django-backend/compose-dev.yml up",
"dev:next": "node server.js",
"build:next": "next build",
"start:next": "NODE_ENV=production PORT=3000 node server.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"all-contributors-cli": "^6.9.1",
"babel-plugin-styled-components": "^1.10.0",
"file-loader": "^3.0.1",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "1.18.2",
"url-loader": "^1.1.2"
},
"release": {
"branch": "documentation"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}