forked from DigitalRiver/react-atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·107 lines (107 loc) · 3.59 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
{
"name": "react-atlas",
"version": "0.1.3",
"description": "Composable React components with CSS Modules.",
"author": "Digital River Experience Engineering (https://github.com/orgs/DigitalRiver/teams/experience-engineering)",
"main": "./lib",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"updateSnapshot": "jest --updateSnapshot",
"coverage": "jest --coverage",
"format": "prettier src/**/*.js config/*.js scripts/*.js --write",
"lint": "eslint src/**/*.js config/*.js scripts/*.js src/**/__tests__/*.test.js --fix",
"format-lint": "npm run format && npm run lint",
"build:prd": "cross-env NODE_ENV=production webpack -p --config config/webpack.config.js && cross-env NODE_ENV=production webpack -p --config config/webpack.index.config.js",
"build:dev": "cross-env NODE_ENV=development webpack --config config/webpack.config.js && webpack --config config/webpack.index.config.js",
"docs:prd": "cross-env NODE_ENV=production styleguidist build --config config/styleguide.config.js",
"docs:dev": "cross-env NODE_ENV=development styleguidist server --config config/styleguide.config.js",
"docs:publish": "node scripts/gh-pages.js",
"precommit": "lint-staged",
"analyze": "cross-env NODE_ENV=production webpack --config config/webpack.analyze.config.js",
"analyze:index": "cross-env NODE_ENV=production webpack --config config/webpack.analyze.index.config.js"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/scripts/enzymeConfig.js",
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.js?$": "babel-jest"
},
"testURL": "http://localhost/"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/DigitalRiver/react-atlas/issues"
},
"keywords": [
"react",
"react-component",
"atlas",
"CSS Modules",
"components"
],
"license": "MIT",
"dependencies": {
"inputmask-core": "^2.2.0",
"match-sorter": "^2.2.3",
"react-bootstrap-table": "^4.3.1",
"react-css-modules": "4.7.2",
"react-dropzone": "^4.2.9"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"blacklist": "^1.1.4",
"cross-env": "^5.0.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"gh-pages": "^1.1.0",
"glob-all": "^3.1.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "22.1.4",
"lint-staged": "^7.1.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"prettier": "^1.6.1",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-router-dom": "^4.3.1",
"react-styleguidist": "^7.0.2",
"react-test-renderer": "^16.6.3",
"react-testing-library": "^5.2.3",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.13.1"
},
"peerDependencies": {
"react": ">= 16.3.x < 17",
"react-dom": ">= 16.3.x < 17"
},
"repository": {
"type": "git",
"url": "https://github.com/DigitalRiver/react-atlas.git"
},
"webpackConfig": "./config/styleguide.config.js"
}