-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 2.92 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
{
"name": "plataforma-lop",
"version": "0.0.0-development",
"homepage": "https://lar-ect.github.io/lop-web",
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"start": "nodemon ./app.js --ignore public/ --ignore cypress/",
"dev": "concurrently \"npm start\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"assets": "webpack -w --display-max-modules 0",
"test": "jest --coverage",
"test:watch": "jest --watch",
"generate-webpack-stats": "webpack --profile --json > webpack-stats.json",
"analyze-bundle": "npx webpack-bundle-analyzer webpack-stats.json public/dist",
"prettier": "prettier \"*/**/*.js\" --ignore-path ./.prettierignore --write"
},
"pre-commit": ["test", "prettier"],
"browserslist": "last 2 versions",
"dependencies": {
"axios": "^0.16.1",
"body-parser": "1.18.2",
"brace": "^0.10.0",
"connect-flash": "0.1.1",
"connect-mongo": "1.3.2",
"cookie-parser": "1.4.3",
"dotenv": "4.0.0",
"es6-promisify": "5.0.0",
"express": "4.16.1",
"express-session": "1.15.6",
"express-validator": "4.2.1",
"fixture-stdout": "^0.2.1",
"highlight.js": "9.12.0",
"humanize-duration": "3.10.1",
"jsoneditor": "5.9.6",
"katex": "^0.8.3",
"lodash": "4.17.4",
"md5": "2.2.1",
"moment": "2.18.1",
"mongoose": "5.0.0-rc0",
"mongoose-unique-validator": "1.0.6",
"morgan": "1.9.0",
"passport": "0.4.0",
"passport-github2": "0.1.11",
"passport-local": "1.0.0",
"passport-local-mongoose": "4.2.1",
"passport-oauth2": "1.4.0",
"postmark": "1.4.1",
"pug": "2.0.0-rc.4",
"react": "16.0.0",
"react-dom": "16.0.0",
"slugs": "0.1.3",
"strip-ansi": "4.0.0",
"sweetalert": "^1.1.3",
"tippy.js": "1.2.2",
"uuid": "3.1.0",
"validator": "9.0.0",
"vm2": "3.5.2"
},
"devDependencies": {
"autoprefixer": "7.1.4",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"concurrently": "3.5.0",
"css-loader": "0.28.7",
"cz-ptbr-changelog": "^1.0.1",
"eslint": "4.8.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"jest": "^21.2.1",
"jest-cli": "21.2.1",
"nodemon": "1.12.1",
"opn": "^5.1.0",
"prettier": "1.7.4",
"style-loader": "^0.19.0",
"url-loader": "0.6.2",
"webpack": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-ptbr-changelog"
}
},
"jest": {
"testEnvironment": "jest-environment-node"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"jsxBracketSameLine": true
}
}