-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "pixel8",
"version": "0.2.3",
"main": "main/index.js",
"module": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vsmode/pixel8.git"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-auto-scale": "^1.0.4",
"react-dom": "^16.1.0",
"react-reconciler": "^0.6.0",
"recompose": "^0.26.0",
"styled-components": "^2.2.3"
},
"scripts": {
"build": "npm -s run build-module && npm -s run build-main",
"build-main": "NODE_ENV=production npx babel src --out-dir main --ignore spec.js,test.js --plugins=transform-es2015-modules-commonjs --source-maps inline",
"build-module": "NODE_ENV=production npx babel src --out-dir lib --ignore spec.js,test.js --source-maps inline",
"prebuild": "rm -rf lib && rm -rf main",
"prepare": "npm -s run build",
"test": "npx jest",
"start": "npm -s run styleguide",
"styleguide": "npx styleguidist server",
"styleguide:build": "npx styleguidist build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"jest": "^21.2.1",
"raf": "^3.4.0",
"react-addons-test-utils": "^15.6.2",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "^16.1.0",
"webpack": "^3.8.1",
"webpack-blocks": "^1.0.0-rc.2"
}
}