-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.86 KB
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
{
"name": "themeor",
"version": "2.0.0",
"main": "./dist/index.js",
"author": "Denis Elianovsky denis@opium.pro",
"description": "Create sophisticated themes in React JS. Fast. Without even knowing CSS",
"homepage": "http://themeor.opium.pro",
"repository": {
"type": "git",
"url": "https://github.com/opium-pro/themeor.git"
},
"keywords": [
"react",
"theme",
"theming",
"color",
"templates",
"theme control",
"primitives",
"opium pro"
],
"license": "MIT",
"dependencies": {
"jss": "^10.7.1",
"jss-preset-default": "^10.7.1"
},
"devDependencies": {
"@types/node": "^12.12.37",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.2",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-syntax-highlighter": "^15.4.4",
"typescript": "^4.2.4"
},
"scripts": {
"start": "react-scripts start",
"watch": "nodemon -e ts,tsx,css -w ./src -x npm run build",
"watch:dist": "npm run clear && nodemon -e ts,tsx,css -w ./src -x npm run dist",
"clear": "rm -fr ./dist",
"build:docs": "react-scripts build",
"build": "tsc -p tsconfig.dist.json && npm run css",
"css": "cd ./src/themeor && copyfiles -V ./**/*.css ../../dist && cd ../../",
"publish": "npm run clear && npm run build",
"dist": "npm run build && copyfiles -V ./dist/* ./dist/**/* ../3p5-mobile/node_modules/themeor"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}