-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.89 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
{
"name": "arctic-landscape",
"title": "Arctic Landscape",
"version": "0.1.0",
"description": "An animated drawing of an arctic landscape",
"author": {
"name": "Arctic Ice Studio",
"email": "[email protected]",
"url": "https://arcticicestudio.com"
},
"homepage": "https://github.com/arcticicestudio/arctic-landscape",
"repository": {
"type": "git",
"url": "git+https://github.com/arcticicestudio/arctic-landscape.git"
},
"bugs": {
"url": "https://github.com/arcticicestudio/arctic-landscape/issues"
},
"license": "MIT",
"keywords": [
"arctic",
"landscape",
"react",
"reactjs",
"svg",
"drawing",
"animation",
"nord",
"arcticicestudio"
],
"main": "dist/arctic-landscape.cjs.js",
"jsnext:main": "dist/arctic-landscape.esm.js",
"module": "dist/arctic-landscape.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean build:rollup",
"build:rollup": "rollup -c",
"clean": "del dist/",
"dev": "rollup -c -w",
"dev:fresh": "npm-run-all clean dev",
"format": "npm-run-all format:pretty format:fix",
"format:fix": "eslint --fix --ext .js,.jsx .",
"format:pretty": "prettier --write \"./**/*.{js,json,jsx,md}\"",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"prepublishOnly": "npm-run-all lint build"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-pose": "^4.0.4",
"styled-components": "^4.1.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-plugin-dev-expression": "0.2.1",
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.21",
"del-cli": "1.1.0",
"eslint": "5.11.1",
"eslint-config-arcticicestudio": ">=0.4.0 <1.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.0",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-pose": "^4.0.4",
"remark-cli": "6.0.1",
"remark-preset-lint-arcticicestudio": ">=0.2.0 <1.0.0",
"rollup": "1.0.0",
"rollup-plugin-babel": "4.1.0",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-size-snapshot": "0.7.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-terser": "4.0.1",
"styled-components": "^4.1.3"
},
"dependencies": {
"@babel/runtime": "7.2.0",
"prop-types": "15.6.2"
}
}