-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.55 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
{
"name": "grid-react-adapter",
"version": "1.0.0",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"scripts": {
"commitmsg": "validate-commit-msg",
"preversion": "npm run build:lib",
"clean": "rm -rf dist",
"precompile": "npm run clean",
"compile": "node_modules/.bin/tsc -p .",
"compile:watch": "node_modules/.bin/watch --filter=watch-filter.js 'npm run compile' src",
"watch": "npm-run-all --parallel test:watch compile:watch",
"start": "npm run dev",
"dev": "npm-run-all --parallel open:src",
"dev:offline": "npm-run-all --parallel 'open:src -- --offline' test:watch",
"dev:demo": "npm-run-all --parallel 'open:src -- demo' test:watch",
"dev:api": "npm-run-all --parallel 'open:src -- api' test:watch",
"dev:staging": "npm-run-all --parallel 'open:src -- staging' test:watch",
"open:src": "node tools/srcServer.js",
"open:dist": "node tools/distServer.js",
"pretest": "npm run compile",
"prebuild": "npm run clean && npm run test",
"build": "node tools/build.js",
"prebuild:lib": "npm run prebuild",
"build:lib": "echo 'built'",
"build:lib:watch": "node tools/buildLib.js --watch",
"build:server": "npm run build && npm run open:dist",
"test": "jest --config jest.single.config.js",
"test:watch": "CI=true jest --watch",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/gridgrid/grid-react-adapter.git"
},
"dependencies": {
"classnames": "^2.2.5",
"grid": "~4.10.9",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/enzyme": "^3.1.3",
"@types/jest": "^20.0.8",
"@types/lodash": "~4.14.150",
"@types/node": "~10.17.21",
"@types/react": "~16.9.4",
"@types/react-dom": "^16.0.2",
"autoprefixer": "~6.4.0",
"browser-sync": "~2.26.14",
"chalk": "~1.1.3",
"condition-circle": "^1.5.0",
"connect-history-api-fallback": "~1.3.0",
"convert-source-map": "1.3.0",
"copy-webpack-plugin": "~3.0.1",
"css-loader": "^0.28.7",
"ejs-compiled-loader": "~3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.0",
"html-webpack-plugin": "~4.5.2",
"husky": "^0.14.3",
"jest": "~26.6.3",
"jest-cli": "~26.6.3",
"jest-enzyme": "^4.0.1",
"mini-css-extract-plugin": "~1.6.0",
"node-sass": "^6.0.0",
"npm-run-all": "^4.1.1",
"postcss-loader": "^2.0.6",
"raf": "^3.4.0",
"resolve-url-loader": "~2.3.2",
"sass-loader": "^10.0.0",
"semantic-release": "~15.14.0",
"source-map-loader": "~4.0.0",
"style-loader": "~3.3.1",
"transform-ts-paths": "^1.0.1",
"ts-jest": "~26.5.6",
"ts-loader": "~8.3.0",
"tslint": "^5.4.2",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.0.0",
"typescript": "~4.2.4",
"typings-for-css-modules-loader": "~1.7.0",
"validate-commit-msg": "^2.14.0",
"watch": "~0.13.0",
"webpack": "~5.73.0",
"webpack-bundle-analyzer": "~4.4.2",
"webpack-dev-middleware": "~4.2.0",
"webpack-hot-middleware": "~2.12.2",
"webpack-md5-hash": "~0.0.5"
},
"engines": {
"node": ">=4.3.x"
},
"description": "placeholder",
"license": "UNLICENSED",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"ciq": {
"upstream": "[email protected]:creditiq/web-base.git"
},
"release": {
"verifyConditions": "condition-circle",
"branch": "master",
"fallbackTags": {
"next": "latest"
}
}
}