-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "@riiid/icons",
"version": "0.3.0",
"description": "icons for riiid web",
"license": "UNLICENSED",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"build": "run-s clean fetch generate build:typescript build:copy",
"build:typescript": "tsc",
"build:copy": "cp -rf package.json lib",
"release": "run-s build release:lib",
"release:lib": "pushd lib && yarn publish --non-interactive --no-git-tag-version && popd",
"clean": "rm -rf src lib",
"check-new-version": "sucrase-node scripts/check-new-version",
"fetch": "sucrase-node scripts/fetch",
"generate": "sucrase-node scripts/generate",
"lint:fix": "eslint --fix './src/**/*' './scripts/**/*'"
},
"peerDependencies": {
"@types/react": "^16.9.25",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@riiid/eslint-config": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.intersection": "^4.4.6",
"@types/node": "^13.13.2",
"@types/react": "^16.9.25",
"@types/svgo": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"lodash.groupby": "^4.6.0",
"lodash.intersection": "^4.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"react": "^16.13.1",
"sucrase": "^3.12.1",
"svgo": "^1.3.2",
"terser": "^4.6.7",
"typescript": "^3.8.3"
}
}