This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
forked from seek-oss/seek-style-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 5.07 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "seek-style-guide",
"version": "0.0.0-development",
"description": "Living style guide containing the building blocks and design principles for SEEK web applications",
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"scripts": {
"start": "BASE_HREF=/ node docs/server",
"start-header-footer": "webpack-dev-server --config standalone/header-footer/webpack.config.js --content-base dist",
"test": "npm run test-unit && npm run lint && npm run build",
"test-unit": "BABEL_ENV=test jest --config ./jest.config.json",
"update-snapshot": "npm run test-unit -- --updateSnapshot",
"lint": "npm run lint-js && npm run lint-less",
"lint-js": "eslint app standalone/*/src docs/src react test",
"lint-less": "stylelint '{theme,react,standalone,docs}/**/*.less'",
"clean": "rm -rf dist && rm -rf docs/dist && mkdir -p dist && mkdir -p docs/dist",
"compile": "npm run compile-render && npm run compile-client && npm run compile-header-footer",
"compile-render": "NODE_ENV=production BASE_HREF=${BASE_HREF:-/} webpack --config docs/webpack.static.render.config.js && rm docs/dist/render.js",
"compile-client": "NODE_ENV=production BASE_HREF=${BASE_HREF:-/} webpack --config docs/webpack.static.client.config.js",
"compile-header-footer": "NODE_ENV=production webpack --config standalone/header-footer/webpack.config.js",
"build": "npm run clean && npm run compile",
"build-gh-pages": "BASE_HREF=/seek-style-guide/ npm run build",
"deploy-gh-pages": "node scripts/deploy-gh-pages.js",
"deploy-surge": "surge -p ./docs/dist",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"sketch-to-git": "node scripts/sketch-to-git",
"git-to-sketch": "node scripts/git-to-sketch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/seek-style-guide.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/seek-style-guide/issues"
},
"homepage": "https://github.com/seek-oss/seek-style-guide#readme",
"dependencies": {
"basekick": "^3.0.0",
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"pad-left": "^2.1.0",
"prop-types": "^15.6.0",
"react-autosuggest": "^9.3.2",
"react-isolated-scroll": "^0.1.1",
"react-scrolllock": "^1.0.9"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-helmet": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-react-displayname": "^0.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"browserslist-config-seek": "^1.0.0",
"chai": "^4.1.2",
"chalk": "^2.1.0",
"commitizen": "^2.9.6",
"css-loader": "^0.28.7",
"cz-conventional-changelog": "^2.0.0",
"ejs": "^2.5.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"es6-promisify": "^5.0.0",
"eslint": "^4.8.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"extract-zip": "^1.6.5",
"gh-pages": "^1.0.0",
"glob": "^7.1.2",
"hex-rgb": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"import-glob": "^1.5.0",
"jest": "^21.2.1",
"json-loader": "^0.5.7",
"jsx-to-string": "^1.1.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"less-vars-to-js": "^1.2.0",
"module-alias": "^2.0.1",
"opn": "^5.1.0",
"opn-cli": "^3.1.0",
"postcss-loader": "^2.0.6",
"postcss-prefix-selector": "^1.6.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.0.0",
"react-element-to-jsx-string": "^13.0.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-shallow-testutils": "^3.0.0",
"react-test-renderer": "^16.0.0",
"rewrite-files": "^1.0.1",
"rimraf": "^2.6.2",
"seek-style-guide-webpack": "^2.1.1",
"semantic-release": "^8.1.2",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"static-site-generator-webpack-plugin": "^3.4.1",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-css-modules": "^1.1.0",
"stylelint-config-standard": "^17.0.0",
"surge": "^0.19.0",
"svgo": "^1.0.0",
"svgo-loader": "^2.0.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"zip-folder": "^1.0.0"
}
}