-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.34 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
{
"name": "ars-arsenal",
"version": "3.9.0",
"private": true,
"description": "A gallery picker",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config example/webpack.config.js --mode=development",
"build": "make build",
"build:example": "webpack --config=example/webpack.config.js --mode=production",
"test": "jest",
"lint": "eslint . --cache --cache-location=node_modules/ --ignore-path=.gitignore",
"format": "prettier --write './{src,lib,test,config,example}/**/*.{js,ts,tsx}' './*.{js,ts,jsx}'"
},
"repository": {
"type": "git",
"url": "git://github.com/vigetlabs/ars-arsenal.git"
},
"keywords": [
"gallery",
"react"
],
"author": "Viget Labs <developers@viget.com>",
"license": "MIT",
"bugs": "https://github.com/vigetlabs/ars-arsenal/issues",
"homepage": "https://github.com/vigetlabs/ars-arsenal",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/classnames": "^2.2.6",
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.118",
"@types/query-string": "^6.1.1",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"@types/react-transition-group": "^2.0.14",
"autoprefixer": "^9.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.1",
"babel-loader": "^8.0.2",
"css-loader": "^2.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"lodash": "^4.17.11",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"typescript": "^3.2.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"classnames": "~2.2.6",
"query-string": "^6.2.0",
"react-focus-trap": "^2.7.0",
"react-ink": "^6.4.0",
"react-transition-group": "^2.5.1",
"xhr": "~2.5.0"
}
}