-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.33 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
{
"name": "canvaz",
"version": "1.0.0-alpha",
"description": "Visual, modular content editor for React",
"main": "lib/index.js",
"module": "dist/canvaz.es.js",
"jsnext:main": "dist/canvaz.es.js",
"scripts": {
"tslint": "tslint --type-check --project tsconfig.json",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,webpack,example}/**/*.js\"",
"start": "cross-env NODE_ENV=development webpack --config webpack/development.js --progress --colors --watch",
"build:es": "cross-env TARGET=es cross-env NODE_ENV=production webpack --config webpack/production.js",
"build:umd-dev": "cross-env TARGET=umd_dev cross-env NODE_ENV=production webpack --config webpack/production.js",
"build:umd-prod": "cross-env TARGET=umd_prod cross-env NODE_ENV=production webpack --config webpack/production.js",
"prebuild:dist": "rimraf ./dist",
"build:dist": "npm run build:es && npm run build:umd-dev && npm run build:umd-prod",
"prebuild:lib": "rimraf ./lib",
"build": "npm run build:lib && npm run build:dist",
"test": "npm run tslint",
"example": "cross-env NODE_ENV=development webpack-dev-server --config webpack/example.js"
},
"author": "Sergey Bekrin <[email protected]> http://bekrin.me",
"repository": "sbekrin/spectro",
"keywords": [
"react",
"canvaz",
"editor",
"visual",
"modular",
"content"
],
"files": [
"lib",
"dist",
"readme.md"
],
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^2.2.1",
"invariant": "^2.2.2",
"styled-components": "^2.1.1"
},
"devDependencies": {
"@types/node": "^8.0.17",
"@types/react": "^15.0.39",
"@types/react-dom": "^15.5.2",
"cross-env": "^5.0.0",
"express": "^4.15.3",
"prettier": "^1.5.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-codemirror": "^1.0.0",
"react-dom": "^15.6.1",
"react-highlight": "^0.10.0",
"react-syntax-highlighter": "^5.6.2",
"react-youtube": "^7.4.0",
"rimraf": "^2.6.1",
"ts-loader": "^2.3.1",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.1.0",
"tslint-react": "^3.1.0",
"typescript": "^2.4.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}