forked from easepick/easepick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "easepick",
"version": "1.2.0",
"private": true,
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "^10.3.1",
"eslint": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"rollup": "^2.69.0",
"rollup-plugin-define": "^1.0.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.50.1",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"typescript": "^4.6.2"
},
"engines": {
"npm": "^7.0.0"
},
"scripts": {
"dev": "rollup --config --environment BUILD:development",
"prod": "rollup --config --environment BUILD:production",
"clean:build": "rm -rf packages/*/dist",
"test": "jest"
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Rinat G.",
"email": "[email protected]"
},
"license": "GPL-2.0-or-later"
}