This repository was archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.74 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.74 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
86
87
88
89
90
91
92
93
94
95
{
"name": "@fwrlines/ds.core",
"author": "",
"version": "2.0.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"repository": "github:fwrlines/ds",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 -s ./node_modules/@fwrlines/assets/fonts,./node_modules/@fwrlines/assets/favicons,./src/assets/images",
"build-storybook": "rm -rf ./public/* && build-storybook -c .storybook -o public --quiet -s ./node_modules/@fwrlines/assets/fonts,./node_modules/@fwrlines/assets/favicons,./src/assets/images",
"build": "echo",
"test-eslint": "eslint .storybook/main.js --no-ignore",
"now-build": "mkdir ./public && npm run build-storybook --quiet",
"copy-css:cjs": "copyfiles -u 2 src/ui/**/*.scss dist/cjs",
"copy-css:es": "copyfiles -u 2 src/ui/**/*.scss dist/es",
"compile:cjs": "NODE_ENV=cjs babel src/ui --out-dir dist/cjs --ignore src/stories",
"compile:es": "NODE_ENV=es babel src/ui --out-dir dist/es --ignore src/stories",
"build:cjs": "npm run compile:cjs && npm run copy-css:cjs",
"build:es": "npm run compile:es && npm run copy-css:es",
"compile": "npm run pre-compile && npm run build:cjs && npm run build:es",
"compile:show": "npm run compile && tree dist",
"pre-compile": "echo",
"pub": "npm version patch && npm publish",
"prepare": "npm run compile",
"commit": "git add . && git commit -m 'Version bump' && git push",
"bd": "npm run build&&npm run commit ",
"npre": "nodemon --watch src --ignore 'src/stories' --exec 'npm run build:es && echo done'",
"postinstall": "node ./scripts/postinstall.js",
"relink": "npm link @fwrlines/utils && npm link @fwrlines/assets && npm link @fwrlines/stylebook",
"version:alpha": "npm version prerelease --preid=alpha",
"version:beta": "npm version prerelease --preid=beta"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.0.0-rc.2",
"@apollo/link-retry": "^2.0.0-beta.3",
"@fwrlines/assets": "^1.0.1",
"@fwrlines/stylebook": "^1.0.6-alpha.0",
"@fwrlines/swatch": "latest",
"@fwrlines/utils": "latest",
"compressorjs": "^1.0.6",
"date-fns": "^2.15.0",
"downshift": "^6.0.2",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"history": "^4.10.1",
"query-string": "^6.13.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.0.2",
"react-ga": "^3.1.2",
"react-helmet": "^6.1.0",
"react-intl": "^4.6.9",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.7.16",
"react-table": "^7.5.0",
"regenerator-runtime": "^0.13.7",
"stylelint": "^13.6.0",
"stylelint-config-palantir": "^5.0.0",
"stylelint-scss": "^3.17.2",
"universal-cookie": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-docs": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/react": "^6.1.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copyfiles": "^2.3.0",
"eslint": "^7.2.0",
"eslint-plugin-formatjs": "^2.3.13",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"faker": "^4.1.0",
"jsonlint": "^1.6.3",
"nodemon": "^2.0.4",
"prop-types": "^15.7.2",
"sass": "^1.26.8",
"sass-loader": "^8.0.2"
}
}