forked from antonycourtney/tabli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.87 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
{
"name": "tabli",
"version": "2.1.2",
"repository": {
"type": "git",
"url": "https://github.com/antonycourtney/tabli.git"
},
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@emotion/css": "^11.1.3",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.0",
"babel-plugin-flow-to-typescript": "^0.6.0",
"chrome-promise": "^3.0.5",
"escape-string-regexp": "^4.0.0",
"events": "^3.2.0",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"loglevel": "^1.7.1",
"object-assign": "^4.1.1",
"oneref": "^0.7.0",
"popper": "^1.0.1",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-addons-pure-render-mixin": "^15.6.3",
"react-animate-height": "^2.0.23",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "17.0.1",
"react-popper": "^2.2.4",
"react-simple-img": "^2.3.9",
"semver": "^7.3.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.11",
"@storybook/addon-viewport": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/react": "^11.2.2",
"@types/chrome": "0.0.127",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"@types/semver": "^7.3.4",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.3",
"difflet": "^1.0.1",
"ekko-lightbox": "^5.3.0",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"filesize": "^6.1.0",
"html-loader": "^1.3.2",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"jest-webextension-mock": "^3.7.6",
"jsdom": "^16.4.0",
"json-loader": "^0.5.7",
"material-design-icons": "^3.0.1",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"raw-loader": "^4.0.2",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.6.2",
"react-docgen-typescript-loader": "^3.7.2",
"sinon": "^9.2.2",
"sinon-chrome": "^3.0.1",
"source-map-loader": "^2.0.0",
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.1.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1"
},
"scripts": {
"build:dir": "mkdirp build && mkdirp build/css && mkdirp build/js && mkdirp build/fonts && mkdirp build/images && mkdirp build/testData",
"build:bootstrap": "cp -r node_modules/bootstrap/dist/* build",
"build:jquery": "cp -r node_modules/jquery/dist/* build/js",
"build:html": "cp -r src/css/* build/css && cp -r src/html/* build",
"build:images": "cp -r src/images/* src/assets/*.png build/images",
"build:popper": "cp -r node_modules/popper.js/dist/* build/js",
"build:testData": "cp -r test-data/*.json build/testData",
"build:manifest": "cp src/manifest.json build",
"build-assets": "npm run build:dir && npm run build:jquery && npm run build:bootstrap && npm run build:popper && npm run build:html && npm run build:images && npm run build:testData && npm run build:manifest",
"build-dev": "npm run build-assets && webpack --mode development",
"build-prod": "npm run build-assets && webpack --env prod --mode production",
"clean": "rm -rf ./build",
"lint": "eslint .",
"lintfix": "eslint --fix .",
"watch": "webpack --mode development --watch",
"watch-prod": "webpack --env prod --mode production --watch",
"webpack-analyze": "webpack --env prod --mode production --profile --json > stats.json; ./node_modules/.bin/webpack-bundle-analyzer stats.json ./build/js",
"test": "jest",
"storybook": "start-storybook -s ./build -p 6006",
"build-storybook": "build-storybook -o ./doc/site/dist/storybook"
},
"standard": {
"globals": [
"chrome",
"performance"
],
"ignore": [
"webpack.config.js"
],
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}