-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
141 lines (141 loc) · 2.88 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "formtools",
"version": "1.0.0",
"description": "The Form Tools core bundling/packaging project. This is for dev work only; only the generated dist folder is distributed as releases.",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"locales": [
"af",
"ar",
"az",
"be",
"bg",
"ca",
"cs",
"cy",
"da",
"de",
"el",
"en_us",
"es",
"et",
"fa",
"fi",
"fr",
"ga",
"gl",
"hi",
"hr",
"hu",
"id",
"is",
"it",
"ja",
"ko",
"la",
"lt",
"mk",
"ms",
"mt",
"nl",
"no",
"pl",
"pt",
"pt_br",
"pt_eu",
"ro",
"ru",
"sk",
"sl",
"sr",
"sv",
"sw",
"th",
"tl",
"tr",
"uk",
"vi",
"yi",
"zh_cn",
"zh_tw"
],
"scripts": {
"test": "jest",
"dev": "webpack --config webpack.config.js --env development",
"prod": "webpack --config webpack.config.js --env production",
"lint": "eslint ./src/react/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formtools/core.git"
},
"jest": {
"roots": [
"src/react"
]
},
"author": "Ben Keen <ben.keen@gmail.com>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/formtools/core/issues"
},
"homepage": "https://github.com/formtools/core#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-react": "^7.16.0",
"exec": "^0.2.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-run": "^0.8.1",
"grunt-sass": "^3.0.1",
"grunt-sass-lint": "^0.2.4",
"grunt-sync": "^0.8.0",
"jest": "24.9.0",
"line-reader": "^0.4.0",
"load-grunt-tasks": "^4.0.0",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.29.4",
"n-readlines": "^1.0.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.1",
"reselect": "^3.0.1",
"resolve-url-loader": "^3.1.0",
"sass": "1.58.3",
"sass-loader": "^7.2.0",
"sinon": "^7.5.0",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"@material-ui/core": "^4.4.0",
"@material-ui/icons": "^4.2.1",
"axios": "^0.21.2",
"react": "^16.8.0",
"react-codemirror": "^1.0.0",
"react-dom": "^16.8.0",
"react-redux": "7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.4",
"redux": "^4.0.0",
"redux-actions": "^2.3.2",
"redux-thunk": "^2.2.0"
}
}