-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.55 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
{
"name": "kuma",
"version": "0.1.0",
"description": "The project that powers MDN.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mozilla/kuma.git"
},
"author": "Mozilla",
"license": "MPL",
"bugs": {
"url": "https://bugzilla.mozilla.org/"
},
"scripts": {
"build-watch": "gulp",
"webpack": "webpack",
"webpack-watch": "webpack -w",
"stylelint": "stylelint \"kuma/static/styles/**/*.scss\"",
"eslint": "eslint --ext .js --ext .jsx kuma/",
"optim:svg": "svgo jinja2/includes/icons/* --disable={removeViewBox,removeTitle} --multipass --pretty",
"precommit": "npm run eslint && npm run stylelint && npm run pretty",
"test": "jest --testPathIgnorePatterns tests/sass",
"format": "prettier --write **/*{.js,.jsx,.scss}",
"pretty": "prettier --check **/*{.js,.jsx,.scss}"
},
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"express": "^4.16.4",
"morgan": "^1.9.1",
"newrelic": "^5.9.0",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@emotion/babel-preset-css-prop": "^10.0.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-emotion": "^10.0.7",
"clean-css-cli": "4.2.1",
"eslint": "5.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "22.1.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "1.6.1",
"flow-bin": "^0.92.1",
"gulp": "3.9.1",
"gulp-sass": "4.0.1",
"gulp-stylelint": "7.0.0",
"gulp-watch": "5.0.1",
"husky": "0.14.3",
"jest": "^24.1.0",
"jest-emotion": "^10.0.7",
"node-sass": "4.12.0",
"prettier": "1.18.2",
"react-svg-loader": "3.0.1",
"react-test-renderer": "^16.8.4",
"sass-true": "4.0.0",
"stylelint": "9.3.0",
"supertest": "^4.0.2",
"svgo": "1.2.2",
"uglify-js": "2.8.29",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
}
}