This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.79 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
{
"name": "pivotal-ui-styleguide",
"license": "ISC",
"version": "0.0.0",
"description": "Pivotal UI Styleguide",
"repository": "https://github.com/pivotal-cf/pui-styleguide",
"main": "dist/bundle.js",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-15": "^1.2.0",
"eslint": "^5.12.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-react": "^7.12.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-entities": "^1.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"jest": "^23.6.0",
"jquery": "^3.2.1",
"json-loader": "^0.5.7",
"mock-promises": "^0.8.2",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"pretty": "^2.0.0",
"react-hot-loader": "^4.6.3",
"react-test-renderer": "^15.5.0",
"remark-frontmatter": "^1.2.0",
"remark-parse-yaml": "^0.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/standalone": "^7.0.0",
"classnames": "^2.2.5",
"prismjs": "^1.11.0",
"prop-types": "^15.6.1",
"react": "^15.0.0",
"react-ace": "^6.3.2",
"react-dom": "^15.0.0",
"react-router-dom": "^4.3.1",
"remark-parse": "^5.0.0",
"remark-react": "^4.0.3",
"unified": "^7.1.0"
},
"scripts": {
"copy-files": "mkdir -p dist && cp public/* dist/ && cp -R static dist/",
"start": "npm run copy-files && webpack-dev-server --config ./frontend_webpack.config.babel.js",
"build": "webpack --config ./frontend_webpack.config.babel.js -p && npm run copy-files",
"build-dev": "webpack --config ./frontend_webpack.config.babel.js && npm run copy-files",
"test": "jest",
"lint": "eslint src docs spec --ext .js,.md --fix"
},
"jest": {
"moduleNameMapper": {
"^pivotal-ui/react/iconography/icons$": "<rootDir>/../pivotal-ui/src/iconography/icons.js",
"^pivotal-ui/(.*)": "<rootDir>/../pivotal-ui/src/$1",
"\\.(css|scss)$": "<rootDir>/spec/support/style_mock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/spec/spec_helper.js",
"testRegex": ".*_spec\\.js$"
}
}