forked from petrarchy/arctype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "arctype",
"version": "0.0.0",
"description": "A reference implementation framework for enterprise administration applications.",
"main": "lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"clean": "rimraf lib",
"lint:js": "eslint . --ext .js",
"lint:scss": "stylelint ./src/**/*.scss",
"lint": "npm run lint:js && npm run lint:scss",
"prebuild": "npm run clean",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test",
"prepublish": "npm run build",
"server": "cross-env NODE_ENV=development babel-node server/index",
"start": "npm run server",
"test:watch": "mocha --reporter=min --compilers js:./test/jsdom_setup.js,js:babel-core/register,js:babel-polyfill,js:./test/sass_compiler.js --recursive -w",
"test": "mocha --compilers js:./test/jsdom_setup.js,js:babel-core/register,js:babel-polyfill,js:./test/sass_compiler.js --recursive"
},
"author": "petrarchy",
"precommit": [
"lint"
],
"bugs": "https://github.com/petrarchy/arctype/issues",
"repository": "https://github.com/petrarchy/arctype.git",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"css-modules-require-hook": "^4.0.5",
"enzyme": "^2.6.0",
"eslint": "^3.10.1",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-session": "^1.15.1",
"extract-text-webpack-plugin": "^1.0.1",
"graphql": "^0.8.2",
"html-webpack-plugin": "^2.24.1",
"husky": "^0.11.9",
"jsdom": "^9.8.3",
"lowdb": "^0.14.0",
"mocha": "^3.2.0",
"morgan": "^1.7.0",
"node-sass": "^3.12.4",
"postcss-loader": "^1.1.1",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.1",
"react-css-themr": "^1.6.0",
"react-dom": "^15.4.0",
"react-hot-loader": "^1.3.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^15.0.0",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
}
}