-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.37 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
{
"name": "protected_text",
"version": "1.0.0",
"description": "Small service for storing encrypted notes",
"main": "index.js",
"scripts": {
"build:development": "webpack --config webpack.dev.config.js",
"build:production": "webpack --config webpack.prod.config.js",
"server:development": "webpack-dev-server --color --progress --config webpack.dev.config.js",
"server:production": "node ./src/server/server.js",
"test": "jest -c jest.config.js",
"test:watch": "npm run test -- --watch",
"test:client": "jest -c jest.client.config.js",
"test:server": "jest -c jest.server.config.js",
"test:client:watch": "npm run test:client -- --watch",
"test:server:watch": "npm run test:server -- --watch",
"heroku-postbuild": "npm run build:production"
},
"engines": {
"node": "10.15.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"author": "Andrey Zhuravlyov",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-preset-flow": "^6.23.0",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"faker": "^4.1.0",
"flow-bin": "^0.98.0",
"flow-typed": "^2.5.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.2.0",
"jest": "^24.5.0",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@xstate/react": "^0.3.0",
"body-parser": "^1.19.0",
"crypto-js": "^3.1.9-1",
"draft-js": "^0.10.5",
"express": "^4.16.4",
"express-history-api-fallback": "^2.2.1",
"keyv": "^3.1.0",
"morgan": "^1.9.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^5.0.0",
"xstate": "^4.4.0"
}
}