-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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": "@volusion/element-components",
"version": "2.3.0",
"description": "Collection of reusable components across Element blocks",
"main": "lib/index.js",
"author": "Volusion, LLC",
"license": "MIT",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@volusion/element-proptypes": "^1.1.2",
"aphrodite": "^2.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^4.0.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"aphrodite": "^2.4.0",
"audit-ci": "^2.5.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^25.2.4",
"live-server": "^1.2.1",
"np": "^6.5.0",
"prettier": "^2.0.1",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^4.0.0",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "rollup -c",
"compile": "tsc --pretty",
"start": "live-server --port=5309 --open=src",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepublish": "npm run lint && npm run build",
"release": "npm run prepublish && np",
"watch": "rollup -c --watch",
"audit:ci": "audit-ci --high"
}
}