-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3 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
79
80
81
82
83
84
85
{
"name": "@codacy/styleguide",
"version": "1.0.0",
"description": "Codacy Styleguide Monorepo",
"private": true,
"license": "Apache-2.0",
"repository": "git+https://github.com/codacy/styleguide.git",
"author": "Rodrigo Fernandes <rodrigo@codacy.com>",
"scripts": {
"bolt": "bolt",
"bolt:install": "bolt install",
"build": "concurrently yarn:build:stylesheets' 'yarn:build:website-legacy'",
"build:stylesheets": "bolt w @codacy/stylesheets run build",
"build:website-legacy": "bolt w @codacy/styleguide-website-legacy run build",
"build:legacy-javascripts": "bolt w @codacy/legacy-javascripts run build",
"start:stylesheets": "sane 'yarn run build:stylesheets' stylesheets --glob='**/*.*' --ignored='dist/**'",
"start:legacy-javascripts": "bolt w @codacy/legacy-javascripts run start",
"start:website-legacy": "bolt w @codacy/styleguide-website-legacy run start",
"start:website-legacy-and-dependencies": "concurrently 'yarn:start:stylesheets' 'yarn:start:legacy-javascripts' 'yarn:start:website-legacy'"
},
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.1.5",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@testing-library/react": "^8.0.4",
"@types/jest": "24.0.16",
"@types/node": "12.6.9",
"@types/prettier": "^1.16.4",
"@types/react": "16.8.24",
"@types/react-bootstrap": "^0.32.19",
"@types/react-dom": "16.8.5",
"@types/react-select": "^3.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bolt": "^0.23.6",
"compass": "^0.1.1",
"concurrently": "4.1.1",
"fs-extra": "^8.1.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-compass": "^1.1.1 ",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-imagemin": "^3.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"jest": "24.7.1",
"jest-dom": "^3.5.0",
"lint-staged": "^9.0.2",
"np": "^5.0.3",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.6",
"react-element-to-jsx-string": "^14.1.0",
"react-fast-highlight": "^2.2.2",
"react-scripts": "3.0.1",
"react-select": "^3.0.4",
"rimraf": "^2.6.3",
"sane": "4.1.0",
"ts-jest": "^24.0.2",
"typescript": "3.5.3"
},
"bolt": {
"workspaces": [
"stylesheets",
"legacy-javascripts",
"website-legacy",
"build/*"
]
}
}