-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.6 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
{
"name": "Tests",
"version": "0.0.1",
"description": "Tests",
"main": "src/client/index.js",
"homepage": "https://williamman.co",
"author": "William Manco",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:williammanco/tests.git"
},
"browserslist": [
"> 1%"
],
"scripts": {
"start": "yarn dev:wds",
"build": "yarn prod:build",
"update:single": "yarn upgrade-interactive --latest",
"update:all": "yarn upgrade --latest",
"dev:wds": "webpack-dashboard -- webpack-dev-server",
"prod:build": "rimraf lib && babel src -d lib --ignore .test.js && NODE_ENV=production webpack --progress",
"prod:start": "cross-env NODE_ENV=production pm2 start lib/server && pm2 logs",
"prod:stop": "pm2 delete server",
"start:documentation": "documentation serve --watch --shallow src/**",
"build:documentation": "documentation build src/** -f html -o docs --shallow",
"build:readme": "documentation readme src/** md --shallow --section=API",
"test": "eslint src && flow && jest --coverage",
"precommit-": "yarn test",
"prepush-": "yarn test"
},
"dependencies": {
"babel-preset-react": "^6.24.1",
"controlkit": "^0.1.9",
"font-awesome": "^4.7.0",
"gsap": "^1.19.1",
"jquery": "^3.2.1",
"node-sass": "^4.5.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"sass-loader": "^6.0.5",
"three": "^0.87.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.2.1",
"babel-preset-flow": "^6.23.0",
"css-loader": "^0.28.0",
"documentation": "^4.0.0-beta.19",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-compat": "^1.0.2",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.1",
"flow-bin": "^0.46.0",
"glslify": "^6.0.2",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.2",
"imports-loader": "^0.7.1",
"jest": "^20.0.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"null-loader": "^0.1.1",
"pm2": "^2.4.5",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"uglify-js": "^3.0.9",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.2"
}
}